From b332a371b28b736ec9833e286edfc78cb4f90037 Mon Sep 17 00:00:00 2001 From: George Gastaldi Date: Wed, 28 Aug 2024 10:43:01 -0300 Subject: [PATCH] Only one release at a time per repo --- .github/workflows/deploy-artifacts.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/deploy-artifacts.yml b/.github/workflows/deploy-artifacts.yml index e9f7826..02bc5f2 100644 --- a/.github/workflows/deploy-artifacts.yml +++ b/.github/workflows/deploy-artifacts.yml @@ -25,6 +25,11 @@ env: PAYLOAD_REPOSITORY: ${{ github.event.inputs.github_repository }} PAYLOAD_RUN_ID: ${{ github.event.inputs.run_id }} +concurrency: + # Only one release at a time per repository + group: ${PAYLOAD_REPOSITORY} + cancel-in-progress: true + jobs: deploy_to_central: runs-on: ubuntu-latest