mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-24 16:58:47 +01:00
Prevent concurrent runs
This commit is contained in:
parent
ab54e985ff
commit
6aed6373d6
1 changed files with 3 additions and 0 deletions
3
.github/workflows/i18n-automerge.yml
vendored
3
.github/workflows/i18n-automerge.yml
vendored
|
@ -11,6 +11,9 @@ jobs:
|
||||||
github.event.pull_request.base.ref == 'main' &&
|
github.event.pull_request.base.ref == 'main' &&
|
||||||
github.event.pull_request.head.ref == 'l10n_main'
|
github.event.pull_request.head.ref == 'l10n_main'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
|
|
Loading…
Reference in a new issue