dev: Enable CI on merge queues (#6955)

This commit is contained in:
Michael Genson 2026-01-30 09:18:52 -06:00 committed by GitHub
parent b5358896eb
commit 447a1fb239
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,9 +4,13 @@ on:
pull_request:
branches:
- mealie-next
merge_group:
types: [checks_requested]
branches:
- mealie-next
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.merge_group.head_ref }}
cancel-in-progress: true
jobs:
@ -47,7 +51,10 @@ jobs:
publish-image:
name: "Publish PR Image"
if: contains(github.event.pull_request.labels.*.name, 'build-image') && github.repository == 'mealie-recipes/mealie'
if: |
github.event_name == 'pull_request' &&
contains(github.event.pull_request.labels.*.name, 'build-image') &&
github.repository == 'mealie-recipes/mealie'
permissions:
contents: read
packages: write