Skip to content

Commit 7f20af7

Browse files
committed
Fix extension-ai-analysis action concurrency
Only one action was allowed per repository, instead of one per pull request.
1 parent 5813c9e commit 7f20af7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/extension-ai-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
types: [opened, synchronize, reopened, ready_for_review]
66

77
concurrency:
8-
group: ${{ github.workflow }}-${{ github.ref }}
8+
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
99
cancel-in-progress: true
1010

1111
jobs:

0 commit comments

Comments
 (0)