Skip to content

Commit

Permalink
ci: dependency groups for Dependabot (#1294)
Browse files Browse the repository at this point in the history
### Summary of Changes

Create a few groups for Dependabot to reduce the number of PRs it
creates.
  • Loading branch information
lars-reimann authored Jan 4, 2025
1 parent f9a1756 commit 0bb66be
Showing 1 changed file with 32 additions and 14 deletions.
46 changes: 32 additions & 14 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,41 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
# root
- package-ecosystem: 'github-actions'
- package-ecosystem: github-actions
directory: '/'
schedule:
interval: 'monthly'
- package-ecosystem: 'npm'
interval: monthly
commit-message:
prefix: 'build'
include: scope

- package-ecosystem: npm
directory: '/'
schedule:
interval: 'monthly'
versioning-strategy: 'increase'
interval: monthly
versioning-strategy: increase
commit-message:
prefix: 'build'
include: scope
groups:
development:
applies-to: version-updates
dependency-type: development
update-types:
- patch
- minor

# docs
- package-ecosystem: 'pip'
- package-ecosystem: pip
directory: '/docs'
schedule:
interval: 'monthly'
interval: monthly
commit-message:
prefix: 'build'
include: scope
groups:
mkdocs:
applies-to: version-updates
patterns:
- 'mkdocs*'
update-types:
- patch
- minor

0 comments on commit 0bb66be

Please sign in to comment.