From 7ac492fe19e36d578d767bc74ef6d56ff6ab130c Mon Sep 17 00:00:00 2001 From: Philippe Boneff Date: Mon, 2 Dec 2024 13:57:22 +0000 Subject: [PATCH] add concurrency --- .github/workflows/aws_integration_test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/aws_integration_test.yml b/.github/workflows/aws_integration_test.yml index 41c71ffc..151ff878 100644 --- a/.github/workflows/aws_integration_test.yml +++ b/.github/workflows/aws_integration_test.yml @@ -6,6 +6,12 @@ on: branches: - integration +# This prevents two workflows to run at the same time. +# This workflows calls terragrunt, which does not allow concurent runs. +concurrency: + group: aws-integration + cancel-in-progress: false + permissions: contents: read