From 58b9fef677225f3d2be45a6433824380759cab6c Mon Sep 17 00:00:00 2001 From: Khai Do <3697686+zaro0508@users.noreply.github.com> Date: Fri, 26 Jan 2024 12:44:04 -0800 Subject: [PATCH] Disable concurrent integration test runs (#1426) Integration tests do not work well when running concurrently against a single AWS account. Also integration tests clean up after themselves so we don't want them to be canceled in the middle of a run. --- .github/workflows/gate.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/gate.yaml b/.github/workflows/gate.yaml index 7574c785d..be6d21304 100644 --- a/.github/workflows/gate.yaml +++ b/.github/workflows/gate.yaml @@ -21,6 +21,9 @@ jobs: runs-on: ubuntu-latest permissions: id-token: write + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: false steps: - uses: actions/checkout@v4 - name: Install Poetry