From d02bd11e7f7f57af5fa4b5d13e45601e3ab34fb0 Mon Sep 17 00:00:00 2001 From: Jay Prall <36337+j4y@users.noreply.github.com> Date: Tue, 8 Apr 2025 22:14:45 -0400 Subject: [PATCH] feat: configure concurency in deploy workflow to prevent multiple runs at the same time --- .github/workflows/deploy.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3612362..a2e339a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,6 +12,10 @@ env: AWS_DEFAULT_REGION: us-east-1 TG_WORKING_DIR: terragrunt/live/website +# configure concurrency to prevent multiple runs at the same time +concurrency: + group: ${{ github.workflow }} + jobs: build: runs-on: ubuntu-latest