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(feat): Added renovate #257

Merged
merged 5 commits into from
Nov 23, 2024
Merged
Changes from 4 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
39 changes: 39 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"extends": [
"config:base"
],
"automerge": false,
"assignees": [
"pierluigilenoci"
],
"schedule": [
"before 5am every day"
],
"packageRules": [
{
"description": "Auto-merge patch updates for all dependencies",
tuunit marked this conversation as resolved.
Show resolved Hide resolved
"updateTypes": ["patch"],
"groupName": "all-patch-updates"
"bumpVersion": "patch"
},
{
"description": "Group all minor updates per package",
"updateTypes": ["minor"],
"groupName": "all-minor-updates"
"bumpVersion": "patch"
},
{
"description": "Group all major updates per package",
"updateTypes": ["major"],
"groupName": "all-major-updates"
"bumpVersion": "patch"
}
],
"platformAutomerge": true,
"lockFileMaintenance": {
"enabled": true
},
"baseBranches": [
"main"
]
}
Loading