Skip to content

Commit 5fae108

Browse files
committed
ci: adjust triggers for gh merge queues
For merge queue's to work the CI has to run on the `merge_group` event. Also ignore pushes to the merge queue branches to avoid running CI twice
1 parent 870505c commit 5fae108

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
on: [push, pull_request]
2-
31
name: CI
2+
on:
3+
push:
4+
branches-ignore:
5+
- "gh-readonly-queue/**"
6+
pull_request:
7+
merge_group:
48

59
env:
610
REGISTRY: ghcr.io

0 commit comments

Comments
 (0)