From 96344ea57e6daf5c901aa012d2b5693a130d0cda Mon Sep 17 00:00:00 2001 From: Andrew Grimberg Date: Thu, 27 Jul 2023 07:55:46 -0700 Subject: [PATCH] CI: Modify concurrency for packer validator 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 Change-Id: I0cc380d4009651718c2d15bb0b83caf37b679607 --- .github/workflows/gerrit-packer-verify.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gerrit-packer-verify.yaml b/.github/workflows/gerrit-packer-verify.yaml index 0f64cb783..cbda498d9 100644 --- a/.github/workflows/gerrit-packer-verify.yaml +++ b/.github/workflows/gerrit-packer-verify.yaml @@ -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: -- 2.36.6