Skip to content

Commit

Permalink
chore: renovate config
Browse files Browse the repository at this point in the history
  • Loading branch information
nfelt14 committed Sep 5, 2024
1 parent bdca695 commit 757f246
Show file tree
Hide file tree
Showing 2 changed files with 118 additions and 6 deletions.
118 changes: 118 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"dependencyDashboard": true,
"extends": [
"config:best-practices",
"group:githubArtifactActions",
":separatePatchReleases"
],
"ignoreDeps": [
"tektronix/python-package-ci-cd"
],
"packageRules": [
{
"addLabels": [
"docker",
"dependencies"
],
"additionalBranchPrefix": "docker-deps/",
"commitMessageSuffix": " in all dependant actions",
"description": "Add docker and dependencies labels to Docker dependency updates",
"matchManagers": [
"dockerfile"
],
"semanticCommitScope": "docker-deps"
},
{
"addLabels": [
"gh-actions",
"dependencies"
],
"additionalBranchPrefix": "gh-actions-deps/",
"description": "Add gh-actions and dependencies labels to GitHub Action dependency updates",
"matchManagers": [
"github-actions"
],
"semanticCommitScope": "gh-actions-deps"
},
{
"addLabels": [
"python",
"dependencies"
],
"additionalBranchPrefix": "python-deps/",
"description": "Add python and dependencies labels to Python dependency updates",
"matchManagers": [
"poetry",
"pip_requirements"
],
"semanticCommitScope": "python-deps"
},
{
"commitMessageSuffix": " in all dependant reusable workflows",
"description": "Add commit suffix for reusable workflows",
"matchFileNames": [
"/_reusable-.*\\.ya?ml/"
],
"matchManagers": [
"github-actions"
]
},
{
"commitMessageSuffix": "{{#unless isGroup}} in dev workflows{{/unless}}",
"description": "Group together all dev workflow dependency updates",
"groupName": "dev workflow dependencies",
"matchFileNames": [
"!/_reusable-.*\\.ya?ml/"
],
"matchManagers": [
"github-actions"
]
},
{
"automerge": true,
"description": "Automatically merge all patch updates",
"matchUpdateTypes": [
"patch"
]
},
{
"description": "Allow automerge for minor updates of certain packages",
"matchPackageNames": [
"certifi"
]
},
{
"description": "Group together all pydantic dependencies",
"groupName": "pydantic dependencies",
"matchPackageNames": [
"/^pydantic/"
]
},
{
"automerge": false,
"description": "Group together all python-semantic-release dependencies",
"groupName": "python-semantic-release dependencies",
"matchPackageNames": [
"/^python-semantic-release/"
]
},
{
"commitMessageSuffix": "{{#if (equals parentDir '')}} for {{#each depTypes}}{{replace '-' '/' this}}{{#unless @last}} and {{/unless}}{{/each}}{{else}} in all dependant actions {{/if}}",
"description": "Add commit suffix for the dependency group (or parent directory)",
"matchFileNames": [
"pyproject.toml",
"**/requirements.txt"
],
"matchManagers": [
"poetry",
"pip_requirements"
],
"matchPackageNames": [
"*"
]
}
],
"platformCommit": "enabled",
"prHourlyLimit": 5
}
6 changes: 0 additions & 6 deletions renovate.json

This file was deleted.

0 comments on commit 757f246

Please sign in to comment.