From c9c11eb98a6f01e5d00a173798020faf25fb4f7e Mon Sep 17 00:00:00 2001 From: rasswanth-s <43314053+rasswanth-s@users.noreply.github.com> Date: Wed, 14 Feb 2024 17:51:17 +0530 Subject: [PATCH] fixed concurrency in hagrid releases --- .github/workflows/cd-hagrid.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/cd-hagrid.yml b/.github/workflows/cd-hagrid.yml index 817e2c43702..a349e12b94a 100644 --- a/.github/workflows/cd-hagrid.yml +++ b/.github/workflows/cd-hagrid.yml @@ -11,6 +11,12 @@ on: required: false default: "false" +# Prevents concurrent runs of the same workflow +# while the previous run is still in progress +concurrency: + group: "CD - Hagrid" + cancel-in-progress: false + jobs: call-pr-tests-linting: if: github.repository == 'OpenMined/PySyft' && (github.event.inputs.skip_tests == 'false' || github.event_name == 'schedule') # don't run on forks