From a5ea3d441c10d6d3da5892e0e798329dd26b72c7 Mon Sep 17 00:00:00 2001 From: Vanessa Sochat Date: Fri, 1 Feb 2019 11:49:59 -0500 Subject: [PATCH] curl is missing --- Dockerfile | 2 +- README.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7202bbb..f830c69 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ LABEL "com.github.actions.description"="Create a pull request when a branch is c LABEL "com.github.actions.icon"="activity" LABEL "com.github.actions.color"="yellow" -RUN apt-get update && apt-get install -y jq +RUN apt-get update && apt-get install -y jq curl COPY pull-request.sh /pull-request.sh RUN chmod u+x /pull-request.sh diff --git a/README.md b/README.md index 98b270b..bed588a 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,9 @@ workflow "Create Pull Request" { action "Create New Pull Request" { uses = "vsoch/pull-request-action@master" + secrets = [ + "GITHUB_TOKEN" + ] env = { BRANCH_PREFIX = "update/" PULL_REQUEST_BRANCH = "master"