From 9e17dae84f73d216d232ae250cbd69e191abacdc Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Tue, 7 Jan 2025 22:58:16 -0800 Subject: [PATCH] Use `${{ github.workflow }}` for more copy-pasteable concurrency settings --- .github/workflows/ci.yml | 2 +- .github/workflows/verify-templating.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 30e3a899648..4e29ed634f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ defaults: shell: 'bash -Eeuo pipefail -x {0}' concurrency: - group: ci-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: diff --git a/.github/workflows/verify-templating.yml b/.github/workflows/verify-templating.yml index 1cb644dd790..674a8e04296 100644 --- a/.github/workflows/verify-templating.yml +++ b/.github/workflows/verify-templating.yml @@ -9,7 +9,7 @@ defaults: shell: 'bash -Eeuo pipefail -x {0}' concurrency: - group: verify-templating-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: