* 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>
16 lines
501 B
Docker
16 lines
501 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 python3 py3-pip git bash && \
|
|
pip3 install requests
|
|
COPY pull-request.py /pull-request.py
|
|
|
|
RUN chmod u+x /pull-request.py
|
|
ENTRYPOINT ["python3", "/pull-request.py"]
|