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(.github/renovate.json5): use renovate config preset #1062

Merged
merged 2 commits into from
Jan 3, 2025
Merged
Changes from 1 commit
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
Next Next commit
chore(.github/renovate.json5): use renovate config preset
risu729 committed Jan 3, 2025
commit 7ded50697219cc1a57c61fe049b5348c5d9455e9
27 changes: 27 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
// ref: https://docs.renovatebot.com/configuration-options/
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: [
"github>risu729/renovate-config#1.2.2",
],
packageRules: [
// disable pinning for dependencies and peerDependencies
{
matchFileNames: ["package.json"],
matchDepTypes: ["dependencies"],
// bump for dependencies and release a patch update
rangeStrategy: "bump",
},
{
matchFileNames: ["package.json"],
matchDepTypes: ["peerDependencies"],
// widen range for peerDependencies as far as possible
rangeStrategy: "widen",
},
// set semantic commit types
{
matchFileNames: ["tests/"],
semanticCommitType: "test",
},
],
}
113 changes: 0 additions & 113 deletions renovate.json5

This file was deleted.