We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0804245 commit 3cb12e4Copy full SHA for 3cb12e4
1 file changed
.github/workflows/release-please.yml
@@ -30,8 +30,10 @@ jobs:
30
if: ${{ steps.release.outputs.prs_created == 'true' }}
31
env:
32
GH_TOKEN: ${{ github.token }}
33
- RELEASE_PR: ${{ fromJSON(steps.release.outputs.pr).number }}
+ GH_REPO: ${{ github.repository }}
34
+ RELEASE_PR_JSON: ${{ steps.release.outputs.pr }}
35
run: |
36
+ RELEASE_PR="$(jq -r '.number' <<< "$RELEASE_PR_JSON")"
37
for attempt in {1..120}; do
38
if gh pr merge "$RELEASE_PR" --squash --delete-branch; then
39
break
0 commit comments