-
Notifications
You must be signed in to change notification settings - Fork 0
chore: inline self-contained house Renovate config #8
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,20 @@ | ||
| { | ||
| "$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
| "extends": [ | ||
| "config:recommended" | ||
| ] | ||
| "description": "Inlined house Renovate config — self-contained, public presets only.", | ||
| "extends": ["config:best-practices", ":dependencyDashboard", ":semanticCommits", ":enableVulnerabilityAlertsWithLabel(security)"], | ||
| "schedule": ["before 6am on sunday"], | ||
| "timezone": "America/Chicago", | ||
| "prHourlyLimit": 2, "prConcurrentLimit": 4, | ||
| "labels": ["dependencies", "renovate"], | ||
| "rangeStrategy": "bump", "separateMajorMinor": true, "separateMinorPatch": false, | ||
| "automerge": false, "platformAutomerge": false, "rebaseWhen": "behind-base-branch", | ||
| "branchPrefix": "renovate/", "ignoreDeps": [], | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 Nitpick | 🔵 Trivial | 💤 Low value Remove redundant empty The ♻️ Proposed cleanup- "branchPrefix": "renovate/", "ignoreDeps": [],
+ "branchPrefix": "renovate/",🤖 Prompt for AI Agents |
||
| "vulnerabilityAlerts": {"labels": ["security"], "schedule": ["at any time"], "automerge": true}, | ||
| "packageRules": [ | ||
| {"description": "Group GHA minor/patch/digest — automerge when CI green", "matchManagers": ["github-actions"], "matchUpdateTypes": ["minor","patch","digest","pin","pinDigest"], "groupName": "github-actions", "groupSlug": "github-actions", "semanticCommitType": "chore", "automerge": true}, | ||
| {"description": "GitHub Actions major — hold for review", "matchManagers": ["github-actions"], "matchUpdateTypes": ["major"], "automerge": false, "addLabels": ["review-required"]}, | ||
| {"description": "Any major — hold for review", "matchUpdateTypes": ["major"], "automerge": false, "addLabels": ["major","review-required"]} | ||
| ], | ||
| "lockFileMaintenance": {"enabled": true, "schedule": ["before 6am on sunday"], "automerge": true, "automergeType": "branch"}, | ||
| "recreateWhen": "auto" | ||
| } | ||
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.
🧩 Analysis chain
🏁 Script executed:
Repository: baker-scripts/Scripts
Length of output: 47
🌐 Web query:
What does the Renovate preset :enableVulnerabilityAlertsWithLabel(security) configure by default?💡 Result:
The Renovate preset:enableVulnerabilityAlertsWithLabel(security) enables vulnerability alerts and configures Renovate to add a PR label list containing exactly "security" (i.e., it replaces any existing list of PR labels with ["security"]). [1] Concretely, the preset sets vulnerabilityAlerts.enabled = true and vulnerabilityAlerts.labels = ["{{arg0}}"], so with arg0 = security it becomes vulnerabilityAlerts.labels = ["security"]. [1]
Citations:
🏁 Script executed:
cat -n renovate.json | head -20Repository: baker-scripts/Scripts
Length of output: 1777
Remove redundant
"labels": ["security"]from line 12.The preset
:enableVulnerabilityAlertsWithLabel(security)on line 4 already configures vulnerability alerts with the "security" label. The explicitvulnerabilityAlertsconfiguration on line 12 redundantly specifies"labels": ["security"]again. Keep thescheduleandautomergesettings, but remove the redundant labels property.🤖 Prompt for AI Agents