Files
pull-request-action/Dockerfile

15 lines
456 B
Docker

FROM alpine
# 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"
RUN apk --no-cache add curl wget git bash jq
COPY pull-request.sh /pull-request.sh
RUN chmod u+x /pull-request.sh
ENTRYPOINT ["/pull-request.sh"]