Use concurrency to cancel duplicate workflow runs

Docs: https://docs.github.com/en/actions/using-jobs/using-concurrency
This commit is contained in:
arkon
2022-08-10 22:51:01 -04:00
parent e511f24979
commit b0da0753d9
3 changed files with 8 additions and 22 deletions

View File

@@ -5,6 +5,10 @@ on:
- '**.md'
- 'app/src/main/res/**/strings.xml'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
permissions:
contents: read