chore: only run one workflow at a time per branch

This commit is contained in:
Ryan Dowling 2022-06-16 23:12:17 +10:00
parent f9257c69cf
commit 9fac03fca0
No known key found for this signature in database
GPG key ID: 5539FCDB88950EFD

View file

@ -2,6 +2,10 @@ name: Application
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest