mirror of
https://github.com/logto-io/logto.git
synced 2025-01-13 21:30:30 -05:00
ci: align workflow concurrency (#2987)
This commit is contained in:
parent
1d42077ab4
commit
70527c4bbc
9 changed files with 9 additions and 9 deletions
2
.github/workflows/changesets.yml
vendored
2
.github/workflows/changesets.yml
vendored
|
@ -15,7 +15,7 @@ on:
|
|||
pull_request:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||
|
||||
jobs:
|
||||
changesets:
|
||||
|
|
2
.github/workflows/commitlint.yml
vendored
2
.github/workflows/commitlint.yml
vendored
|
@ -8,7 +8,7 @@ on:
|
|||
types: [opened, edited, synchronize, reopened]
|
||||
|
||||
concurrency:
|
||||
group: commitlint-${{ github.ref }}
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
|
|
2
.github/workflows/integration-test.yml
vendored
2
.github/workflows/integration-test.yml
vendored
|
@ -8,7 +8,7 @@ on:
|
|||
pull_request:
|
||||
|
||||
concurrency:
|
||||
group: integration-test-${{ github.head_ref || github.run_id }}
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
|
|
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
@ -8,7 +8,7 @@ on:
|
|||
pull_request:
|
||||
|
||||
concurrency:
|
||||
group: main-${{ github.head_ref || github.run_id }}
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
|
|
2
.github/workflows/master-codecov-report.yml
vendored
2
.github/workflows/master-codecov-report.yml
vendored
|
@ -4,7 +4,7 @@ on:
|
|||
push:
|
||||
branches: [master]
|
||||
|
||||
concurrency: master-codecov-report
|
||||
concurrency: ${{ github.workflow }}
|
||||
|
||||
jobs:
|
||||
report-coverage:
|
||||
|
|
2
.github/workflows/pen-tests.yml
vendored
2
.github/workflows/pen-tests.yml
vendored
|
@ -11,7 +11,7 @@ on:
|
|||
- completed
|
||||
|
||||
concurrency:
|
||||
group: main-${{ github.head_ref || github.run_id }}
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
|
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -9,7 +9,7 @@ on:
|
|||
- v*.*.*
|
||||
|
||||
concurrency:
|
||||
group: dockerize-${{ github.ref }}
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||
|
||||
jobs:
|
||||
dockerize:
|
||||
|
|
2
.github/workflows/update-pr-metadata.yml
vendored
2
.github/workflows/update-pr-metadata.yml
vendored
|
@ -6,7 +6,7 @@ on:
|
|||
types: [opened, edited, synchronize, reopened]
|
||||
|
||||
concurrency:
|
||||
group: update-metadata-${{ github.ref }}
|
||||
group: ${{ github.workflow }}-${{ 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.head_ref || github.run_id }}
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
|
|
Loading…
Add table
Reference in a new issue