Skip to content
Merged
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
23 changes: 0 additions & 23 deletions .github/dependabot.yml

This file was deleted.

53 changes: 53 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", ":semanticCommitsDisabled"],
"timezone": "Etc/UTC",
"schedule": ["before 9am on monday"],
"dependencyDashboard": true,
"labels": ["dependencies"],
"prConcurrentLimit": 10,
"lockFileMaintenance": {
"enabled": true,
"schedule": ["before 9am on monday"]
},
"packageRules": [
{
"description": "Group all GitHub Actions bumps into one PR.",
"matchManagers": ["github-actions"],
"groupName": "github-actions"
},
{
"description": "Group non-major dev dependency bumps.",
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "dev-dependencies"
},
{
"description": "Group non-major prod dependency bumps.",
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "prod-dependencies"
},
{
"description": "Group non-major pnpm catalog toolchain bumps (oxlint, oxfmt, typescript, @types/node).",
"matchFileNames": ["pnpm-workspace.yaml"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "catalog toolchain"
},
{
"description": "Automerge low-risk updates once required checks pass.",
"matchUpdateTypes": ["digest", "pin", "patch"],
"automerge": true
}
],
"customManagers": [
{
"customType": "regex",
"description": "Bump the waza CLI version in the eval workflow. NOTE: WAZA_SHA256 is not auto-updated; refresh it by hand or the eval job's `sha256sum -c` guard will (safely) fail the PR.",
"managerFilePatterns": ["/^\\.github/workflows/eval\\.yml$/"],
"matchStrings": ["WAZA_VERSION:\\s*(?<currentValue>v[\\d.]+)"],
"depNameTemplate": "microsoft/waza",
"datasourceTemplate": "github-releases"
}
]
}