generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
57 additions
and
12 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
$schema: "https://docs.renovatebot.com/renovate-schema.json", | ||
dependencyDashboard: true, | ||
extends: [ | ||
"config:recommended", | ||
"schedule:weekly", | ||
":semanticCommitTypeAll(chore)", | ||
], | ||
labels: ["dependencies"], | ||
rangeStrategy: "bump", | ||
ignoreDeps: ["eorzeaenv"], | ||
packageRules: [ | ||
{ | ||
groupName: "Python dependencies", | ||
// https://docs.renovatebot.com/modules/manager/pep621/ | ||
matchManagers: ["pep621"], | ||
matchDepTypes: ["project.dependencies"], | ||
matchUpdateTypes: ["minor", "patch"], | ||
description: "Weekly update of Python dependencies", | ||
}, | ||
{ | ||
groupName: "Python dev-dependencies", | ||
// https://docs.renovatebot.com/modules/manager/pep621/ | ||
matchManagers: ["pep621"], | ||
matchDepTypes: ["tool.uv.dev-dependencies"], | ||
matchUpdateTypes: ["minor", "patch"], | ||
description: "Weekly update of Python dev-dependencies", | ||
}, | ||
{ | ||
groupName: "GitHub actions dependencies", | ||
// https://docs.renovatebot.com/modules/manager/github-actions/ | ||
matchManagers: ["github-actions"], | ||
description: "Weekly update of GitHub actions dependencies", | ||
}, | ||
{ | ||
groupName: "Docker dependencies", | ||
// https://docs.renovatebot.com/modules/manager/dockerfile/ | ||
matchManagers: ["dockerfile"], | ||
description: "Weekly update of Docker dependencies", | ||
}, | ||
{ | ||
// 更新 Python 版本时,需要同时更新这几个文件 | ||
groupName: "Python version", | ||
matchPackageNames: ["python"], | ||
// https://docs.renovatebot.com/modules/manager/dockerfile/ | ||
// https://docs.renovatebot.com/modules/manager/pyenv/ | ||
matchManagers: ["dockerfile", "pyenv"], | ||
description: "Weekly update of Python version", | ||
}, | ||
{ | ||
groupName: "pre-commit dependencies", | ||
// https://docs.renovatebot.com/modules/manager/pre-commit/ | ||
matchManagers: ["pre-commit"], | ||
description: "Weekly update of pre-commit dependencies", | ||
}, | ||
], | ||
} |