Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion default.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"enabled": true,
"enabled": false,
"extends": [
"config:best-practices",
":pinAllExceptPeerDependencies",
Expand Down
62 changes: 31 additions & 31 deletions renovate-presets/automerge.json5
Original file line number Diff line number Diff line change
Expand Up @@ -6,37 +6,37 @@ Prerequisites for this preset:
- CI workflow trigger on `merge_group:` event or on push to temporary merge queue branches *(Only if Merge Queue enabled)*
*/
{
"timezone": "Europe/Berlin",
"packageRules": [
{
"matchUpdateTypes": [
"minor",
"patch",
"digest",
"lockFileMaintenance"
],
// Create PRs only during working hours
// This controls the update window for scenarios using platform automerge
// when renovate loses control over the merge schedule
"schedule": [
"* 9-13 * * 1-5"
],
/* Maintain backwards compatibility for repositories
timezone: "Europe/Berlin",
packageRules: [
{
matchUpdateTypes: ["minor", "patch", "digest", "lockFileMaintenance"],
// Create PRs only during working hours
// This controls the update window for scenarios using platform automerge
// when renovate loses control over the merge schedule
schedule: ["* 9-13 * * 1-5"],
/* Maintain backwards compatibility for repositories
timezone: "Europe/Berlin",
packageRules: [
{
matchUpdateTypes: ["minor", "patch", "digest", "lockFileMaintenance"],
// Create PRs only during working hours
// This controls the update window for scenarios using platform automerge
// when renovate loses control over the merge schedule
schedule: ["* 9-13 * * 1-5"],
/* Maintain backwards compatibility for repositories
that do not require a merge queue and thus control
automerges in renovate still */
"automergeSchedule": [
"* 9-13 * * 1-5"
],
"automerge": true,
"automergeType": "pr",
"automergeStrategy": "auto",
// Enable Github automerge (renovate loses control over the merge schedule)
"platformAutomerge": true,
// Create PRs only if the stability days check has passed
// This prevents premature PR merges
"prCreation": "not-pending",
"internalChecksFilter": "strict",
"rebaseWhen": "conflicted"
}
]
automergeSchedule: ["* 9-13 * * 1-5"],
automerge: false,
automergeType: "pr",
automergeStrategy: "auto",
// Enable Github automerge (renovate loses control over the merge schedule)
platformAutomerge: false,
Comment on lines +30 to +34
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Logic Error: Disabling automerge in the shared preset affects all repositories permanently unless explicitly reverted

The PR description states this change is temporary (until Wed 13 May 2026) and intended to disable renovate org-wide. However, automerge.json5 is a shared preset consumed by all repositories that extend it. Setting automerge: false and platformAutomerge: false here will silently suppress automerge for all those repositories even after renovate is re-enabled — unless this file is reverted at the same time as default.json.

The disabling of automerge in default.json (via "enabled": false) already halts all renovate activity org-wide. Modifying the automerge preset adds unnecessary blast radius: any repo that was previously relying on these values being true will lose automerge behaviour the moment renovate is re-enabled, if this file is not reverted together with default.json.

Consider reverting the changes to automerge.json5 entirely and relying solely on "enabled": false in default.json to achieve the temporary freeze. If both files must be changed, ensure the revert PR (due by 13 May 2026) covers both files atomically.


Please provide feedback on the review comment by checking the appropriate box:

  • 🌟 Awesome comment, a human might have missed that.
  • ✅ Helpful comment
  • 🤷 Neutral
  • ❌ This comment is not helpful

// Create PRs only if the stability days check has passed
// This prevents premature PR merges
prCreation: "not-pending",
internalChecksFilter: "strict",
rebaseWhen: "conflicted",
},
],
}
24 changes: 9 additions & 15 deletions renovate-presets/branch-merge.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
{
"timezone": "Europe/Berlin",
"packageRules": [
{
"matchUpdateTypes": [
"minor",
"patch",
"digest"
],
"automergeSchedule": [
"* 9-13 * * 1-5"
],
"automerge": true,
"automergeType": "branch"
}
]
"timezone": "Europe/Berlin",
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch", "digest"],
"automergeSchedule": ["* 9-13 * * 1-5"],
"automerge": true,
"automergeType": "branch"
}
]
}
44 changes: 22 additions & 22 deletions renovate-presets/security.json5
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
// Display OSV vulnerability alerts in the dependency dashboard
"dependencyDashboardOSVVulnerabilitySummary": "all",
// Enable OSV vulnerability alerts for all repositories (experimental feature)
"osvVulnerabilityAlerts": true,
// Configuration for Security updates
"vulnerabilityAlerts": {
// no grouping
"groupName": null,
// may be created at any time
"schedule": [],
// no dashboard apporval required
"dependencyDashboardApproval": false,
// specific minimum release age for security updates
"minimumReleaseAge": "5 days",
// add label indicating sverity of CVEs
"addLabels": ["SEVERITY:{{vulnerabilitySeverity}}"],
// add commitMessageSuffix indicating sverity of CVEs
"commitMessageSuffix": "[SECURITY] [SEVERITY: {{vulnerabilitySeverity}}{{#if (or (equals vulnerabilitySeverity 'MEDIUM') (equals vulnerabilitySeverity 'MODERATE'))}} 🟡{{else if (or (equals vulnerabilitySeverity 'HIGH') (equals vulnerabilitySeverity 'CRITICAL'))}} 🔴{{/if}}]",
// use the lowest possible version that fixes the vulnerability
"vulnerabilityFixStrategy": "lowest"
}
}
// Display OSV vulnerability alerts in the dependency dashboard
dependencyDashboardOSVVulnerabilitySummary: "all",
// Enable OSV vulnerability alerts for all repositories (experimental feature)
osvVulnerabilityAlerts: true,
// Configuration for Security updates
vulnerabilityAlerts: {
// no grouping
groupName: null,
// may be created at any time
schedule: [],
// no dashboard apporval required
dependencyDashboardApproval: false,
// specific minimum release age for security updates
minimumReleaseAge: "5 days",
// add label indicating sverity of CVEs
addLabels: ["SEVERITY:{{vulnerabilitySeverity}}"],
// add commitMessageSuffix indicating sverity of CVEs
commitMessageSuffix: "[SECURITY] [SEVERITY: {{vulnerabilitySeverity}}{{#if (or (equals vulnerabilitySeverity 'MEDIUM') (equals vulnerabilitySeverity 'MODERATE'))}} 🟡{{else if (or (equals vulnerabilitySeverity 'HIGH') (equals vulnerabilitySeverity 'CRITICAL'))}} 🔴{{/if}}]",
// use the lowest possible version that fixes the vulnerability
vulnerabilityFixStrategy: "lowest",
},
}