Skip to content

Commit

Permalink
chore: fix concurrency grouping
Browse files Browse the repository at this point in the history
  • Loading branch information
djzager committed Jun 29, 2022
1 parent 48532bf commit b765260
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion workflows/reconcile_gh_issue.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
# This prevents potential race conditions by only allowing this action to handle
# one update at a time for a given issue.
concurrency:
group: ${{ github.event.issue.number }}
group: reconcile-${{ github.event.issue.number }}
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion workflows/require_matching_label.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
# This prevents potential race conditions by only allowing this action to handle
# one update at a time for a given issue.
concurrency:
group: ${{ github.event.issue.number }}
group: require-matching-label-${{ github.event.issue.number }}
cancel-in-progress: true

jobs:
Expand Down

0 comments on commit b765260

Please sign in to comment.