mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
ci: fix concurrency issue (#1356)
This commit is contained in:
parent
8d664effc5
commit
f6977157a6
3 changed files with 3 additions and 3 deletions
2
.github/workflows/integration-test.yml
vendored
2
.github/workflows/integration-test.yml
vendored
|
@ -7,7 +7,7 @@ on:
|
|||
pull_request:
|
||||
|
||||
concurrency:
|
||||
group: integration-test-${{ github.ref }}
|
||||
group: integration-test-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
|
|
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
@ -7,7 +7,7 @@ on:
|
|||
pull_request:
|
||||
|
||||
concurrency:
|
||||
group: main-${{ github.ref }}
|
||||
group: main-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
|
|
2
.github/workflows/upload-annotations.yml
vendored
2
.github/workflows/upload-annotations.yml
vendored
|
@ -7,7 +7,7 @@ on:
|
|||
branches: [master]
|
||||
|
||||
concurrency:
|
||||
group: upload-annotations-${{ github.ref }}
|
||||
group: upload-annotations-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
|
|
Loading…
Reference in a new issue