CI: Modify concurrency for packer validator 20/107120/1
authorAndrew Grimberg <agrimberg@linuxfoundation.org>
Thu, 27 Jul 2023 14:55:46 +0000 (07:55 -0700)
committerAndrew Grimberg <agrimberg@linuxfoundation.org>
Thu, 27 Jul 2023 14:55:46 +0000 (07:55 -0700)
Both the base validator and packer validator had the same concurrency
group. This causes GHA to semi-randomly pick one of the two jobs to keep
running.

Signed-off-by: Andrew Grimberg <agrimberg@linuxfoundation.org>
Change-Id: I0cc380d4009651718c2d15bb0b83caf37b679607

.github/workflows/gerrit-packer-verify.yaml

index 0f64cb783c9ea9aea1e4569468d7227e01fb085d..cbda498d9a3bd00d0c4b9accecb53e617fd4d603 100644 (file)
@@ -50,7 +50,7 @@ env:
   PACKER_VERSION: "1.9.1"
 
 concurrency:
-  group: ${{ github.event.inputs.GERRIT_CHANGE_ID || github.run_id }}
+  group: packer-${{ github.event.inputs.GERRIT_CHANGE_ID || github.run_id }}
   cancel-in-progress: true
 
 jobs: