From 0d92c0e0c5f01b1919f9ef69467ed498585d0d6d Mon Sep 17 00:00:00 2001 From: Andy Lulham Date: Sun, 12 May 2024 10:32:52 +0100 Subject: [PATCH] Prevent concurrent actions --- .github/workflows/deploy.yml | 3 +-- .github/workflows/fetch_notes.yml | 3 +++ .github/workflows/fetch_tweets.yml | 3 +++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2a9dc435..fe19440a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -9,8 +9,7 @@ permissions: contents: write concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true + group: all_workflows jobs: fetch: diff --git a/.github/workflows/fetch_notes.yml b/.github/workflows/fetch_notes.yml index 39256990..77441a05 100644 --- a/.github/workflows/fetch_notes.yml +++ b/.github/workflows/fetch_notes.yml @@ -8,6 +8,9 @@ on: permissions: contents: write +concurrency: + group: all_workflows + jobs: fetch: runs-on: ubuntu-latest diff --git a/.github/workflows/fetch_tweets.yml b/.github/workflows/fetch_tweets.yml index 8a478d94..f462010f 100644 --- a/.github/workflows/fetch_tweets.yml +++ b/.github/workflows/fetch_tweets.yml @@ -8,6 +8,9 @@ on: permissions: contents: write +concurrency: + group: all_workflows + jobs: fetch: runs-on: ubuntu-latest