adding first test

This commit is contained in:
Vanessa Sochat
2019-01-31 18:56:56 -05:00
commit 230b0cfb1e
3 changed files with 159 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
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"]