mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-22 01:05:34 +03: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.head.ref == 'l10n_main'
|
||||
runs-on: ubuntu-latest
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
|
|
Loading…
Reference in a new issue