aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorMartin Robinson <mrobinson@igalia.com>2023-11-21 09:40:27 +0100
committerGitHub <noreply@github.com>2023-11-21 08:40:27 +0000
commit35b4641bf91ed932919d543bfb7deba599174adb (patch)
tree842a0c36f34fbb06ecfef25379961a1ad83a259d /.github
parent76569daa620a2c449323273e0ea5b45467500543 (diff)
downloadservo-35b4641bf91ed932919d543bfb7deba599174adb.tar.gz
servo-35b4641bf91ed932919d543bfb7deba599174adb.zip
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.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/try.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/try.yml b/.github/workflows/try.yml
index 9ced3989a99..3644fcbbfc4 100644
--- a/.github/workflows/try.yml
+++ b/.github/workflows/try.yml
@@ -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: