mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Add a concurrency group to try jobs (#30756)
This should prevent multiple `parse-comment` jobs from running at the same time for the same pull request, reducing the number of duplicate builds when multiple labels are applied.
This commit is contained in:
parent
76569daa62
commit
35b4641bf9
1 changed files with 2 additions and 0 deletions
2
.github/workflows/try.yml
vendored
2
.github/workflows/try.yml
vendored
|
@ -8,6 +8,8 @@ jobs:
|
|||
parse-comment:
|
||||
name: Trigger Try
|
||||
runs-on: ubuntu-latest
|
||||
concurrency:
|
||||
group: try-${{ github.event.number }}
|
||||
outputs:
|
||||
configuration: ${{ steps.configuration.outputs.result }}
|
||||
steps:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue