Skip to content

Commit 1cf2651

Browse files
authored
Merge pull request #12 from opendatahub-io/mergify
feat: Add mergify branch automation
2 parents 5ddea63 + f073296 commit 1cf2651

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

.mergify.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
pull_request_rules:
2+
- name: Backport merged PRs from main → incubation
3+
conditions:
4+
- base=main
5+
- merged
6+
- author!=mergify[bot]
7+
- repository-full-name=opendatahub-io/llama-stack-provider-ragas
8+
actions:
9+
backport:
10+
branches:
11+
- incubation
12+
ignore_conflicts: true
13+
labels:
14+
- bot/sync-incubation
15+
title: "[incubation] {{ title }}"
16+
body: |
17+
Backport of #{{ number }} — {{ title }}
18+
19+
This PR cherry-picks the changes from `main` into `incubation`.
20+
21+
- name: Backport merged PRs from incubation → stable (skip .tekton-only changes)
22+
conditions:
23+
- base=incubation
24+
- merged
25+
- repository-full-name=opendatahub-io/llama-stack-provider-ragas
26+
- files~=^(?!\.tekton/).+
27+
actions:
28+
backport:
29+
branches:
30+
- stable
31+
ignore_conflicts: true
32+
labels:
33+
- bot/sync-stable
34+
title: "[stable] {{ title | replace('[incubation] ', '') | replace('Backport to incubation: ', '') | replace('Backport to incubation:', '') }}"
35+
body: |
36+
Backport of #{{ number }} — {{ title }}
37+
38+
This PR cherry-picks the changes from `incubation` into `stable`.

0 commit comments

Comments
 (0)