Files
pull-request-action/Dockerfile
Vanessa Sochat 47359ba4e0 oups
2019-01-31 19:01:24 -05:00

14 lines
421 B
Docker

FROM debian:jessie-slim
# docker build -t vanessa/pull-request-action
LABEL "com.github.actions.name"="Pull Request on Branch Push"
LABEL "com.github.actions.description"="Create a pull request when a branch is created or updated"
LABEL "com.github.actions.icon"="activity"
LABEL "com.github.actions.color"="yellow"
COPY pull-request.sh /pull-request.sh
RUN chmod u+x /pull-request.sh
ENTRYPOINT ["/pull-request.sh"]