zenhub-automations/Dockerfile
James 9a63f16fbb
MVP (#5)
* Hey!

* Remove event option (its broken)

* Change up logging

* Adds pull_request opened test

* Log error

* Import logic

* This should be async

* Execute a module action

* Log moveResult

* Throw if failures exist

* Swapping API libs

* Well there's that

* Adds a bit of functionality

* 💄 eventModule handler

* Add payload log

* Change icon, fix ref type exclusion

* Fix typo

* Fixes body resolution

* Adds PR movement automations

* Nvm don't need this.
2019-07-11 11:14:43 -06:00

21 lines
626 B
Docker

FROM node:slim
LABEL "com.github.actions.name"="Zenhub Automations"
LABEL "com.github.actions.description"="Automate zenhub with ease"
# Here are all of the available icons: https://feathericons.com/
LABEL "com.github.actions.icon"="power"
# And all of the available colors: https://developer.github.com/actions/creating-github-actions/creating-a-docker-container/#label
LABEL "com.github.actions.color"="gray-dark"
# Copy the package.json and package-lock.json
COPY package*.json ./
# Install dependencies
RUN npm ci
# Copy the rest of your action's code
COPY . .
# Run `node /index.js`
ENTRYPOINT ["node", "/index.js"]