Skip to content

Commit

Permalink
Configure Renovate Action for Python projects
Browse files Browse the repository at this point in the history
Signed-off-by: Akashdeep Dhar <[email protected]>
  • Loading branch information
gridhead committed Nov 21, 2023
1 parent 193ee44 commit a35494b
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,34 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
"config:base",
"group:allNonMajor",
"schedule:weekdays",
":maintainLockFilesWeekly",
":separateMultipleMajorReleases",
":automergeMinor",
":gitSignOff"
],
"lockFileMaintenance": {
"enabled": true,
"extends": [
"group:allNonMajor"
],
"commitMessageAction": "Automated dependency updates"
},
"automergeStrategy": "rebase",
"rangeStrategy": "widen",
"stabilityDays": 4,
"labels": ["dependencies"],
"packageRules": [
{
"matchLanguages": ["python"],
"addLabels": ["python"]
},
{
"matchDepTypes": ["devDependencies"],
"automerge": true,
"groupName": "dev dependencies"
}
]
}

0 comments on commit a35494b

Please sign in to comment.