-
Notifications
You must be signed in to change notification settings - Fork 0
Temporarily disable renovate completely for sapphire week #90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| { | ||
| "enabled": true, | ||
| "enabled": false, | ||
| "extends": [ | ||
| "config:best-practices", | ||
| ":pinAllExceptPeerDependencies", | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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", | ||
| }, | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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.json5is a shared preset consumed by all repositories that extend it. Settingautomerge: falseandplatformAutomerge: falsehere will silently suppress automerge for all those repositories even after renovate is re-enabled — unless this file is reverted at the same time asdefault.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 beingtruewill lose automerge behaviour the moment renovate is re-enabled, if this file is not reverted together withdefault.json.Consider reverting the changes to
automerge.json5entirely and relying solely on"enabled": falseindefault.jsonto 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: