Skip to content

Commit

Permalink
Migrate config .github/renovate.json (#40)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Nov 7, 2024
1 parent f71a968 commit 6c44d31
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,41 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
"config:recommended"
],
"timezone": "America/Chicago",
"pre-commit": {
"enabled": true
},
"packageRules": [
{
"matchManagers": ["github-actions"],
"matchManagers": [
"github-actions"
],
"automerge": true
},
{
"matchPackagePatterns": ["mypy", "pre-commit", "ruff"],
"automerge": true
"automerge": true,
"matchPackageNames": [
"/mypy/",
"/pre-commit/",
"/ruff/"
]
},
{
"matchPackagePatterns": ["ruff"],
"groupName": "ruff",
"schedule": [
"on the first day of the month"
],
"matchPackageNames": [
"/ruff/"
]
},
{
"matchPackagePatterns": ["pymodbus"],
"rangeStrategy": "widen"
"rangeStrategy": "widen",
"matchPackageNames": [
"/pymodbus/"
]
}
]
}

0 comments on commit 6c44d31

Please sign in to comment.