Skip to content

Commit

Permalink
ci(dependabot): enable grouping dependencies update (#893)
Browse files Browse the repository at this point in the history
  • Loading branch information
nogic1008 committed Sep 7, 2023
1 parent 1a6ab0d commit 3cf6bb0
Showing 1 changed file with 22 additions and 9 deletions.
31 changes: 22 additions & 9 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,47 @@
# see: https://docs.github.com/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates
# see: https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
# GitHub Actions (/.github/workflows/*.yml)
- package-ecosystem: 'github-actions'
- package-ecosystem: github-actions
directory: '/'
schedule:
interval: 'monthly'
interval: monthly
time: '18:00'
timezone: 'Asia/Tokyo'
reviewers:
- 'ddradar/action-maintainer'
labels:
- 'dependabot:robot:'
commit-message:
prefix: 'ci'
include: 'scope'
prefix: ci
include: scope

# npm/yarn (/**/package.json)
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'monthly'
interval: monthly
time: '18:00'
timezone: 'Asia/Tokyo'
groups:
vitest:
dependency-type: development
patterns:
- '@vitest/*'
- 'vitest'
lint-tools:
dependency-type: development
exclude-patterns:
- '@octokit/*'
- '@tsconfig/*'
- '@vercel/*'
- typescript
assignees:
- 'ddradar/action-maintainer'
labels:
- 'dependabot:robot:'
commit-message:
prefix: 'chore'
prefix-development: 'chore'
include: 'scope'
prefix: chore
prefix-development: chore
include: scope
open-pull-requests-limit: 10

0 comments on commit 3cf6bb0

Please sign in to comment.