Skip to content

Commit

Permalink
ci: define Dependabot groups
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-reimann committed Jan 4, 2025
1 parent 3e5f6f7 commit 9348244
Showing 1 changed file with 43 additions and 12 deletions.
55 changes: 43 additions & 12 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,51 @@
# 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'
- package-ecosystem: 'pip'
interval: monthly
commit-message:
prefix: 'build'
include: scope
groups:
dev-patches:
applies-to: version-updates
dependency-type: development
update-types:
- patch

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

0 comments on commit 9348244

Please sign in to comment.