From 6e1ab343f6c17705dc2d08c90b11efa2d571598c Mon Sep 17 00:00:00 2001 From: Kitsios Konstantinos Date: Fri, 11 Jul 2025 05:15:25 +0300 Subject: [PATCH] ci: EKF change indicator concurrency limit (#25189) Signed-off-by: Konstantinos --- .github/workflows/ekf_functional_change_indicator.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ekf_functional_change_indicator.yml b/.github/workflows/ekf_functional_change_indicator.yml index 27f3f654f1..3900e06443 100644 --- a/.github/workflows/ekf_functional_change_indicator.yml +++ b/.github/workflows/ekf_functional_change_indicator.yml @@ -7,6 +7,11 @@ on: paths-ignore: - 'docs/**' +# If two events are triggered within a short time in the same PR, cancel the run of the oldest event +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number }} + cancel-in-progress: true + jobs: unit_tests: runs-on: ubuntu-latest