diff --git a/.github/workflows/auto-tag.yml b/.github/workflows/auto-tag.yml index e85ee85..9bdd32e 100644 --- a/.github/workflows/auto-tag.yml +++ b/.github/workflows/auto-tag.yml @@ -10,6 +10,10 @@ on: permissions: contents: write +concurrency: + group: ${{ github.workflow }} + cancel-in-progress: true + jobs: check-and-tag: name: Check and create version tag diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 202da7d..3a249bc 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,6 +10,10 @@ on: permissions: {} +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: ruff: name: "Ruff" diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index c45a142..e750df1 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -13,6 +13,10 @@ on: permissions: {} +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: hassfest: # https://developers.home-assistant.io/blog/2020/04/16/hassfest name: Hassfest validation