mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
add concurrency to test actions (#1975)
configured to only cancel workflows in PRs, but not on main branch origins in #1933, but opitmized to not cancel workflows of non PRs
This commit is contained in:
parent
1fd605604f
commit
1d78e1af9c
4
.github/workflows/test-invoke-conda.yml
vendored
4
.github/workflows/test-invoke-conda.yml
vendored
@ -9,6 +9,10 @@ on:
|
||||
- 'main'
|
||||
- 'development'
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
matrix:
|
||||
strategy:
|
||||
|
4
.github/workflows/test-invoke-pip.yml
vendored
4
.github/workflows/test-invoke-pip.yml
vendored
@ -9,6 +9,10 @@ on:
|
||||
- 'main'
|
||||
- 'development'
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
matrix:
|
||||
strategy:
|
||||
|
Loading…
Reference in New Issue
Block a user