chore: configure Renovate to auto-rebase behind PRs (#111)
Add rebaseWhen: 'behind-base-branch' to automatically rebase Renovate PRs when they fall behind main. This fixes CI failures on dependency update PRs that were created before recent schema changes (device_role_source removal). Without auto-rebase, Renovate PRs based on old main fail CI because: - Old code references removed device_role_source field - New migrations drop the column - Tests fail with ERROR 42703 (undefined_column) Now Renovate will automatically rebase PRs to pick up latest changes. Reviewed-on: graham/towerops-web#111
This commit is contained in:
parent
7d65e9e4c5
commit
714e273c47
1 changed files with 1 additions and 0 deletions
|
|
@ -17,6 +17,7 @@
|
|||
"prConcurrentLimit": 10,
|
||||
"prCreation": "immediate",
|
||||
"automerge": false,
|
||||
"rebaseWhen": "behind-base-branch",
|
||||
"rangeStrategy": "bump",
|
||||
"separateMajorMinor": true,
|
||||
"separateMinorPatch": false,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue