feat(ci): group multiple Dependabot changes into single PRs for breaking/non-breaking changes by jenstroeger · Pull Request #922 · jenstroeger/python-package-template
Expand Up
@@ -14,6 +14,18 @@ updates:
include: scope
open-pull-requests-limit: 13
target-branch: main
# Group updates into pull requests. See also:
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference#groups--
groups:
pip-breaking-changes:
applies-to: version-updates
update-types:
- major
pip-non-breaking-changes:
applies-to: version-updates
update-types:
- minor
- patch
# Add additional reviewers for PRs opened by Dependabot. For more information, see:
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#reviewers
# reviewers:
Expand All
@@ -29,6 +41,18 @@ updates:
include: scope
open-pull-requests-limit: 13
target-branch: main
# Group updates into pull requests. See also:
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference#groups--
groups:
gh-breaking-changes:
applies-to: version-updates
update-types:
- major
gh-non-breaking-changes:
applies-to: version-updates
update-types:
- minor
- patch
# Add additional reviewers for PRs opened by Dependabot. For more information, see:
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#reviewers
# reviewers:
Expand Down