mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
fix(pr-label): concurrency group cannot be empty
This commit is contained in:
4
.github/workflows/pr-label.yml
vendored
4
.github/workflows/pr-label.yml
vendored
@@ -8,8 +8,8 @@ on:
|
||||
pull_request_target:
|
||||
types: [opened, synchronize]
|
||||
concurrency:
|
||||
group: ${{ github.event_name == 'pull_request_target' && format('pr-label-{0}', github.event.pull_request.number) || '' }}
|
||||
cancel-in-progress: ${{ github.event_name == 'pull_request_target' || '' }}
|
||||
group: ${{ format('pr-label-{0}', github.event.pull_request.number || github.sha) }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
conflicts:
|
||||
|
||||
Reference in New Issue
Block a user