Don't cancel CI runs for develop and master branch

This commit is contained in:
acx10
2026-01-20 08:54:58 -07:00
parent 4e27b8afab
commit b7c0d7050d

View File

@@ -10,7 +10,7 @@ on:
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true cancel-in-progress: ${{ github.ref != 'refs/heads/develop' && github.ref != 'refs/heads/master' }}
jobs: jobs:
migration-check: migration-check:
@@ -209,4 +209,5 @@ jobs:
type=registry,ref=ghcr.io/booklore-app/booklore:buildcache type=registry,ref=ghcr.io/booklore-app/booklore:buildcache
cache-to: | cache-to: |
type=gha,mode=max type=gha,mode=max
type=registry,ref=ghcr.io/booklore-app/booklore:buildcache,mode=max type=registry,ref=ghcr.io/booklore-app/booklore:buildcache,mode=max