This commit is contained in:
@@ -254,13 +254,13 @@ jobs:
|
|||||||
cat response_errors.txt
|
cat response_errors.txt
|
||||||
echo "----"
|
echo "----"
|
||||||
|
|
||||||
if [ "$HTTP_STATUS" == "200" ] && [ "$(cat response_body.json | jq -r .state)" == "open" ]; then
|
if [ "$HTTP_STATUS" == "200" ] && [ "$(cat response_body.json | jq -r .[0].state)" == "open" ]; then
|
||||||
echo ">> Pull Request has been found open, will update"
|
echo ">> Pull Request has been found open, will update"
|
||||||
PR_INDEX=$(cat response_body.json | jq -r .number)
|
PR_INDEX=$(cat response_body.json | jq -r .[0].number)
|
||||||
echo "pull-request-exists=${PR_INDEX}" >> $GITEA_OUTPUT
|
echo "pull-request-exists=${PR_INDEX}" >> $GITEA_OUTPUT
|
||||||
echo "pull-request-index=true" >> $GITEA_OUTPUT
|
echo "pull-request-index=true" >> $GITEA_OUTPUT
|
||||||
|
|
||||||
elif [ "$HTTP_STATUS" == "200" ] && [ "$(cat response_body.json | jq -r .state)" == "closed" ]; then
|
elif [ "$HTTP_STATUS" == "200" ] && [ "$(cat response_body.json | jq -r .[0].state)" == "closed" ]; then
|
||||||
echo ">> Pull Request found, but was closed"
|
echo ">> Pull Request found, but was closed"
|
||||||
echo "pull-request-exists=false" >> $GITEA_OUTPUT
|
echo "pull-request-exists=false" >> $GITEA_OUTPUT
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user