Skip to content

Commit

Permalink
Only rebase Renovate branches when conflicted
Browse files Browse the repository at this point in the history
This should prevent excessive test/CI runs due to Renovate branches
rebasing whenever an update to `main` is done. Instead, only conflicts
with main will trigger a rebase and a test run, which shoudl be rare,
given dependencies are seldom updated manually.
  • Loading branch information
froddd committed Sep 25, 2024
1 parent d48e768 commit 995e70d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
{
"extends": ["github>ministryofjustice/arn-renovate-config"],
"ignoreDeps": ["@playwright/test", "applicationinsights"]
"extends": [
"github>ministryofjustice/arn-renovate-config"
],
"ignoreDeps": [
"@playwright/test",
"applicationinsights"
],
"rebaseWhen": "conflicted"
}

0 comments on commit 995e70d

Please sign in to comment.