We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77b4baf commit 314ea12Copy full SHA for 314ea12
.github/workflows/gevals.yaml
@@ -29,7 +29,8 @@ permissions:
29
30
concurrency:
31
# Only run once for latest commit per ref and cancel other (previous) runs.
32
- group: ${{ github.workflow }}-${{ github.ref }}
+ # For issue_comment events, use PR number as group to avoid different PRs canceling each other.
33
+ group: ${{ github.workflow }}-${{ github.event_name == 'issue_comment' && format('pr-{0}', github.event.issue.number) || github.ref }}
34
cancel-in-progress: true
35
36
env:
0 commit comments