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:
Martin Robinson 2023-11-21 09:40:27 +01:00 committed by GitHub
parent 76569daa62
commit 35b4641bf9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: