Skip to content
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

chore: enable renovate bot #6242

Merged
merged 3 commits into from
Sep 24, 2024
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
57 changes: 57 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", "schedule:weekly"],
"ignorePaths": ["**/tests/**", "**/node_modules/**"],
// ensure pnpmfile can be run
"allowScripts": true,
"packageRules": [
// Use chore as semantic commit type for commit messages
{
"matchPackagePatterns": ["*"],
"semanticCommitType": "chore",
// always bump package.json
"rangeStrategy": "bump"
},
{
"groupName": "rsbuild",
"packagePatterns": ["rsbuild"],
"groupSlug": "rsbuild"
},
{
"groupName": "rspress",
"packagePatterns": ["rspress"],
"groupSlug": "rspress"
},
{
"groupName": "types",
"packagePatterns": ["^@types/"],
"groupSlug": "types"
},
{
"groupName": "all patch dependencies",
"groupSlug": "all-patch",
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["patch"]
},
// manually update peer dependencies
{
"depTypeList": ["peerDependencies"],
"enabled": false
}
],
"ignoreDeps": [
// manually update some packages
"pnpm",
"esbuild",
"typescript",
// related to the SWC version built into Rspack
"@swc/helpers",
// pure esm packages can not be used now
"globby",
"open",
"strip-ansi",
// align Node.js version minimum requirements
"@types/node",
"node"
]
}
49 changes: 0 additions & 49 deletions .github/workflows/update-rsbuild.yml

This file was deleted.

49 changes: 0 additions & 49 deletions .github/workflows/update-rspress.yml

This file was deleted.

Loading