CI: Do not cancel CI execution on dev branch

This commit is contained in:
Laurent Cozic
2026-03-08 11:16:54 +00:00
parent 04babe0261
commit 737c7dcdb4
4 changed files with 4 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ name: react-native-android-build-apk
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.ref == 'refs/heads/dev' && github.run_id || format('{0}-{1}', github.workflow, github.ref) }}
cancel-in-progress: true
jobs:

View File

@@ -2,7 +2,7 @@ name: Build macOS M1
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.ref == 'refs/heads/dev' && github.run_id || format('{0}-{1}', github.workflow, github.ref) }}
cancel-in-progress: true
jobs:

View File

@@ -2,7 +2,7 @@ name: Joplin Continuous Integration
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.ref == 'refs/heads/dev' && github.run_id || format('{0}-{1}', github.workflow, github.ref) }}
cancel-in-progress: true
jobs:

View File

@@ -2,7 +2,7 @@ name: Joplin UI tests
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.ref == 'refs/heads/dev' && github.run_id || format('{0}-{1}', github.workflow, github.ref) }}
cancel-in-progress: true
permissions: