forked from tektronix/python-package-ci-cd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
118 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
This file was deleted.
Oops, something went wrong.