1
0
Fork 0
mirror of https://github.com/cheeaun/phanpy.git synced 2025-04-02 22:53:53 +03:00

Prevent concurrent runs

This commit is contained in:
Lim Chee Aun 2024-08-19 00:05:24 +08:00
parent ab54e985ff
commit 6aed6373d6

View file

@ -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