Skip to content

Commit

Permalink
chore: Update renovate configuration to group Python version updates …
Browse files Browse the repository at this point in the history
…together for Dockerfiles and the pyproject.toml file
  • Loading branch information
nfelt14 committed Nov 13, 2024
1 parent 4d56814 commit 910c21a
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
"packageRules": [
{
"additionalBranchPrefix": "{{#if (equals manager 'github-actions')}}gh-actions{{else}}{{categories}}{{/if}}-deps/",
"description": "Set the branch prefix and minimum release age for all updates",
"matchPackageNames": [
"*"
"description": "Set the branch prefix and minimum release age for all updates except the main Python version",
"matchDepNames": [
"*",
"!python"
],
"minimumReleaseAge": "5 days"
},
Expand Down Expand Up @@ -133,6 +134,21 @@
"matchPackageNames": [
"*"
]
},
{
"additionalBranchPrefix": "",
"commitMessageSuffix": " in all dependant actions",
"description": "Group together all Python (official) version updates",
"groupName": "python version",
"matchDepNames": [
"python"
],
"matchManagers": [
"dockerfile",
"poetry"
],
"semanticCommitScope": "python-version",
"semanticCommitType": "chore"
}
],
"platformCommit": "enabled",
Expand Down

0 comments on commit 910c21a

Please sign in to comment.