From: Tom Hughes Date: Wed, 5 Oct 2022 21:49:17 +0000 (+0100) Subject: Fix concurrency groups for github actions X-Git-Tag: live~1946 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/c054e8fa6589aec01e31d5166272bb5c3f48512b?hp=--cc Fix concurrency groups for github actions --- c054e8fa6589aec01e31d5166272bb5c3f48512b diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 6f88614ab..5f0f0f078 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -3,7 +3,7 @@ on: - push - pull_request concurrency: - group: ${{ github.workflow }}-{{ github.head_ref || github.ref }} + group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} cancel-in-progress: true jobs: test: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5b6668a84..11a4c322f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -3,7 +3,7 @@ on: - push - pull_request concurrency: - group: ${{ github.workflow }}-{{ github.head_ref || github.ref }} + group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} cancel-in-progress: true env: os: ubuntu-20.04 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c1fa68072..79811c612 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -3,7 +3,7 @@ on: - push - pull_request concurrency: - group: ${{ github.workflow }}-{{ github.head_ref || github.ref }} + group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} cancel-in-progress: true jobs: test: