Skip to content

Commit b4ecaaa

Browse files
committed
dummy
1 parent a679daf commit b4ecaaa

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/stale-branches.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,13 @@ jobs:
2727
BRANCHES=$(echo "$RESPONSE" | jq -r '.payload.branches[].name')
2828
2929
for BRANCH in $BRANCHES; do
30-
echo "Deleting branch $BRANCH..."
31-
DELETE_REPONSE=$(curl -L -s \
30+
echo "Deleting branch $BRANCH..."
31+
DELETE_RESPONSE=$(curl -L -s \
3232
-X DELETE \
3333
-H "Accept: application/vnd.github+json" \
3434
-H "Authorization: Bearer ${{env.GITHUB_TOKEN}}" \
3535
-H "X-GitHub-Api-Version: 2022-11-28" \
3636
https://api.github.com/repos/nginx/documentation/git/refs/heads/$BRANCH)
37+
echo "Delete response for branch $BRANCH: $DELETE_RESPONSE"
3738
done
3839

0 commit comments

Comments
 (0)