Skip to content

Commit

Permalink
chore(ci): cancel in progress GHA runs
Browse files Browse the repository at this point in the history
  • Loading branch information
hughns committed Jan 9, 2024
1 parent 84fb13e commit 701d991
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ jobs:
lint:
name: 'Lint'
runs-on: ubuntu-latest
concurrency:
group: ${{ github.event_name }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -39,6 +42,9 @@ jobs:
name: 'Build + Release'
needs: [lint]
runs-on: ubuntu-latest
concurrency:
group: ${{ github.event_name }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 701d991

Please sign in to comment.