mirror of
https://github.com/go-vikunja/vikunja.git
synced 2025-12-05 19:16:51 -06:00
ci: remove concurrency from test workflow (#863)
This commit is contained in:
committed by
GitHub
parent
ff6efa8a94
commit
b9ddb48db4
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@@ -11,6 +11,14 @@ on:
|
||||
branches:
|
||||
- main
|
||||
|
||||
concurrency:
|
||||
# main merges use a unique run_id so they don't cancel each other
|
||||
# other branches or PRs share a group to auto-cancel old runs
|
||||
group: ${{ github.ref == 'refs/heads/main' &&
|
||||
format('{0}-{1}', github.workflow, github.run_id) ||
|
||||
format('{0}-{1}', github.workflow, github.event.pull_request.number || github.ref) }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: Test
|
||||
|
||||
Reference in New Issue
Block a user