CI Perf Lint

renovate-rebase-when-unconfigured

Renovate configuration does not explicitly set rebaseWhen locally.

What it detects

The repository has a Renovate configuration file, but it does not include a local rebaseWhen setting. The rule also checks inside packageRules for automerge and rebaseWhen.

Skipped cases

Not skipped

Why it matters

The default Renovate rebaseWhen value is "auto", which rebases PRs aggressively on every upstream change. In CI-heavy repositories this causes redundant CI runs: every rebase triggers the full workflow suite, consuming runner minutes and delaying other jobs. Explicitly setting it to "conflicted" or "never" prevents unnecessary rebases and keeps CI noise low.

Suggested action

Add an explicit rebaseWhen field to the Renovate configuration:

{
  "rebaseWhen": "conflicted"
}

Common choices for CI-conscious setups:

Choose the value that matches your team’s tolerance for stale PRs versus CI noise. Avoid leaving the default "auto" in repositories where CI minutes matter.

Measurement

Monitor CI run frequency for Renovate PRs in the weeks before and after adding the setting. You should see fewer redundant CI runs for rebased dependency updates.