this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(ci): match release-plz branch name prefix in PR detection

+1 -1
+1 -1
.github/workflows/release-plz.yml
··· 62 62 id: check-pr 63 63 if: github.event_name == 'push' 64 64 run: | 65 - PR_EXISTS=$(gh pr list --repo "$GITHUB_REPOSITORY" --head release-plz --state open --json number --jq 'length') 65 + PR_EXISTS=$(gh pr list --repo "$GITHUB_REPOSITORY" --state open --json number,headRefName --jq '[.[] | select(.headRefName | startswith("release-plz"))] | length') 66 66 echo "exists=$PR_EXISTS" >> "$GITHUB_OUTPUT" 67 67 env: 68 68 GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}