Skip to content

Commit

Permalink
ci: define dependency groups
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-reimann committed Jan 4, 2025
1 parent b2ce7e6 commit 993ddb4
Showing 1 changed file with 25 additions and 10 deletions.
35 changes: 25 additions & 10 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,41 @@
version: 2
updates:
- package-ecosystem: 'github-actions'
- package-ecosystem: github-actions
directory: '/'
schedule:
interval: 'monthly'
interval: monthly
commit-message:
prefix: 'build'
include: 'scope'
include: scope

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

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

0 comments on commit 993ddb4

Please sign in to comment.