Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci/mergify: add merge rule for backport to 0.44 (backport #3862) #3863

Merged
merged 1 commit into from
Oct 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,24 @@ queue_rules:
- "#approved-reviews-by >= 1"
- base = main
merge_method: merge


- name: backport-0.44-queue
speculative_checks: 3
batch_size: 3
queue_conditions:
- "#approved-reviews-by >= 1"
- base = "0.44.0"
merge_method: merge

pull_request_rules:
- name: automatic merge to main
- name: automatic merge to main or backport branch
conditions:
- label = "merge"
- label != "do-not-merge"
- "#approved-reviews-by >= 1"
- base = main
- or:
- base = main
- base = "0.44.0"
actions:
queue:
autosquash: true
Expand Down
Loading