diff options
| author | Yuriy Andamasov <yuriy@vyos.io> | 2026-06-01 02:25:31 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-01 02:25:31 +0300 |
| commit | 1ed02263928e056838ca7174a99f183c1a3a79e5 (patch) | |
| tree | fa5ba752b193b5f934c36291800751e625a71980 | |
| parent | f7a7368d516b8cb50aeac5489d392f73cbccceff (diff) | |
| download | coderabbit-1ed02263928e056838ca7174a99f183c1a3a79e5.tar.gz coderabbit-1ed02263928e056838ca7174a99f183c1a3a79e5.zip | |
T8943: base_branches -> .* (match all); drop stale 1c current entry (#7)HEADproduction
Replace the explicit trunk/LTS base_branches list with the .* regex so it
matches all non-default base branches and the post-1c `current` entry no
longer needs maintenance. Default branch is always reviewed regardless.
🤖 Generated by [robots](https://vyos.io)
| -rw-r--r-- | .coderabbit.yaml | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/.coderabbit.yaml b/.coderabbit.yaml index 4487471..d23113f 100644 --- a/.coderabbit.yaml +++ b/.coderabbit.yaml @@ -40,18 +40,10 @@ reviews: # Lifted from Org-UI (2026-05-12). 0 = never auto-pause after N reviewed commits. auto_pause_after_reviewed_commits: 0 base_branches: - - current - # rollout 1c (T8943): additive new trunk names alongside `current`. - # `current` retained through the post-window bake period; removed in - # Task 7 cleanup once no repo defaults to it. - - rolling - - production - - main - - master - - sagitta - - circinus - - equuleus - - crux + # Match all branches (regex). Replaces the explicit trunk/LTS list and + # removes the stale post-1c `current` entry. The default branch is always + # reviewed; this governs which NON-default base branches get auto-review. + - ".*" ignore_title_keywords: - WIP - DO NOT MERGE |
