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:
Graham McIntire 2026-03-22 12:31:29 -05:00 committed by graham
parent 7d65e9e4c5
commit 714e273c47

View file

@ -17,6 +17,7 @@
"prConcurrentLimit": 10,
"prCreation": "immediate",
"automerge": false,
"rebaseWhen": "behind-base-branch",
"rangeStrategy": "bump",
"separateMajorMinor": true,
"separateMinorPatch": false,