Testing assign request again (#43)

* Update pull-request.sh
* making reviewer failure more verbose
* More debugging
* updating pull request script to be more verbose
* need to pipe curl_wrapper into stderr so it doesnt return
* final tweaks to remove extra printing
* Testing assign request again
* updating to be more verbose
* testing with python entrypoint

Signed-off-by: vsoch <vsochat@stanford.edu>
This commit is contained in:
Vanessasaurus
2020-09-24 11:58:11 -06:00
committed by GitHub
parent 66d0146c3a
commit 727bec37b0
4 changed files with 334 additions and 304 deletions

View File

@@ -7,8 +7,9 @@ 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 apk --no-cache add curl wget git bash jq
COPY pull-request.sh /pull-request.sh
RUN apk --no-cache add python3 py3-pip git bash && \
pip3 install requests
COPY pull-request.py /pull-request.py
RUN chmod u+x /pull-request.sh
ENTRYPOINT ["/pull-request.sh"]
RUN chmod u+x /pull-request.py
ENTRYPOINT ["python3", "/pull-request.py"]