cancel other running builds in github actions when a new one comes up

This commit is contained in:
Vitor Pamplona
2026-03-16 17:16:05 -04:00
parent 7e2912ffd8
commit 12c27af813
+4
View File
@@ -6,6 +6,10 @@ on:
push: push:
branches: [main] branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs: jobs:
lint: lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest