From 1e628b844e9c2b2ead66d41b790cae109b1ba1b3 Mon Sep 17 00:00:00 2001 From: Cesar Garza Date: Mon, 1 Nov 2021 12:25:26 -0500 Subject: [PATCH] Limit acceptance test job/workflow to single run at a time (#738) * Add concurrency group to acceptance test workflows * Update workflow name --- .github/workflows/acceptance-test-schedule.yml | 4 +++- .github/workflows/test.yml | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/acceptance-test-schedule.yml b/.github/workflows/acceptance-test-schedule.yml index f031ee56e..01c212dea 100644 --- a/.github/workflows/acceptance-test-schedule.yml +++ b/.github/workflows/acceptance-test-schedule.yml @@ -1,4 +1,4 @@ -name: Tests +name: Acceptance Test Schedule # Runs acceptance tests on a cron schedule @@ -6,6 +6,8 @@ on: schedule: - cron: 0 14 * * MON-FRI # Every weekday at 14:00 UTC (10a Eastern) +concurrency: acceptance_tests + jobs: acceptance: runs-on: ubuntu-latest diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ebdfacd8b..f6e9d9551 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,6 +43,8 @@ jobs: environment: name: Acceptance Tests + concurrency: acceptance_tests + continue-on-error: true steps: