diff --git a/.github/workflows/00-init.yml b/.github/workflows/00-init.yml index 897f849575..142976ee74 100644 --- a/.github/workflows/00-init.yml +++ b/.github/workflows/00-init.yml @@ -8,9 +8,6 @@ jobs: name: Init runs-on: ubuntu-latest steps: - - name: 🛑 Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.12.1 - - name: ⬇️ Checkout repo uses: actions/checkout@v4 diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index 2da024a1b8..fa52bdf2d7 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -6,6 +6,10 @@ on: branches: - "main" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} + jobs: init: uses: ./.github/workflows/00-init.yml