From fb8cd8623f436c8b42c8a5c0b015a6abb5721351 Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Wed, 8 Feb 2023 06:17:03 +0000 Subject: [PATCH] Only one staging release workflow run at any given time Signed-off-by: Pedro Algarvio --- .github/workflows/staging.yml | 2 +- .github/workflows/templates/staging.yml.jinja | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/staging.yml b/.github/workflows/staging.yml index fc940783eb9..d9f89c4daf6 100644 --- a/.github/workflows/staging.yml +++ b/.github/workflows/staging.yml @@ -21,7 +21,7 @@ permissions: pull-requests: read # for dorny/paths-filter to read pull requests concurrency: - group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.run_id }} + group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.repository }} cancel-in-progress: false jobs: diff --git a/.github/workflows/templates/staging.yml.jinja b/.github/workflows/templates/staging.yml.jinja index ec094234c3f..a6cfd0ee7e4 100644 --- a/.github/workflows/templates/staging.yml.jinja +++ b/.github/workflows/templates/staging.yml.jinja @@ -18,7 +18,7 @@ on: <%- block concurrency %> concurrency: - group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.run_id }} + group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.repository }} cancel-in-progress: false <%- endblock concurrency %>