diff options
| author | Yuriy Andamasov <yuriy@vyos.io> | 2026-05-30 16:19:31 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-30 16:19:31 +0300 |
| commit | ddad5b93f57223fc866891066ea2db915cb03201 (patch) | |
| tree | 2b719e6215e435f128fa8dd6adc27fd9bef6860c | |
| parent | f64f0c3070f354a9ca761da57b3d07a172dc29d2 (diff) | |
| download | mergify-ddad5b93f57223fc866891066ea2db915cb03201.tar.gz mergify-ddad5b93f57223fc866891066ea2db915cb03201.zip | |
ci: T8943: additive rolling/production label rules for rollout 1c (#16)
Tracking: T8943
| -rw-r--r-- | .mergify.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.mergify.yml b/.mergify.yml index c236cf1..9f161fa 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -240,6 +240,18 @@ pull_request_rules: description: Mirror base-branch as label. Replaces vyos/.github:add-pr-labels.yml. conditions: [base=current] actions: { label: { toggle: [current] } } + # rollout 1c (T8943): additive label rules for the renamed trunk names. + # `rolling` replaces `current` as the release-train trunk; `production` + # is the new default for non-release-train repos. The `current` rule + # above is retained through the bake period (removed in Task 7 cleanup). + - name: Label PR with rolling + description: Mirror base-branch as label. Replaces vyos/.github:add-pr-labels.yml. + conditions: [base=rolling] + actions: { label: { toggle: [rolling] } } + - name: Label PR with production + description: Mirror base-branch as label. Replaces vyos/.github:add-pr-labels.yml. + conditions: [base=production] + actions: { label: { toggle: [production] } } - name: Label PR with circinus description: Mirror base-branch as label. Replaces vyos/.github:add-pr-labels.yml. conditions: [base=circinus] |
