chore: only run one workflow at a time per branch
This commit is contained in:
parent
f9257c69cf
commit
9fac03fca0
1 changed files with 4 additions and 0 deletions
4
.github/workflows/application.yml
vendored
4
.github/workflows/application.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue