mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-02-06 23:04:30 +01:00
Merge pull request #2217 from Pwuts/patch-3
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