Skip to content

Commit

Permalink
Merge pull request #191 from mlibrary/dependabot-group-updates
Browse files Browse the repository at this point in the history
`dependabot` group updates
  • Loading branch information
erinesullivan authored Sep 3, 2024
2 parents b9dc6a9 + 2ceea2e commit 678f810
Showing 1 changed file with 34 additions and 23 deletions.
57 changes: 34 additions & 23 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,45 @@
version: 2
updates:
# Enable version updates for npm
- package-ecosystem: npm
# Look for `package.json` and `lock` files in the `root` directory
directory: /
# Check the npm registry for updates every first day of the month at 6am EST
# For npm dependencies
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: monthly
timezone: America/Detroit
interval: "monthly"
time: "06:00"
# Exclude `chai` as it is a breaking change
ignore:
- dependency-name: chai
# Assign to the lead developer
day: "monday"
timezone: "America/Detroit"
commit-message:
prefix: "deps"
include: "scope"
open-pull-requests-limit: 5
assignees:
- erinesullivan
# Add the `dependencies` label
- "erinesullivan"
labels:
- dependencies
# Let dependabot create up to 10 PRs at a time
open-pull-requests-limit: 10
- "dependencies"
ignore:
- dependency-name: "chai"
groups:
group-all-npm-updates:
patterns:
- "*"

# Enable version updates for GitHub Actions with similar scheduling details
- package-ecosystem: github-actions
directory: /
# For GitHub Actions updates
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: monthly
timezone: America/Detroit
interval: "monthly"
time: "06:00"
day: "monday"
timezone: "America/Detroit"
commit-message:
prefix: "deps"
include: "scope"
open-pull-requests-limit: 5
assignees:
- erinesullivan
- "erinesullivan"
labels:
- dependencies
- "dependencies"
groups:
group-all-github-actions-updates:
patterns:
- "*"

0 comments on commit 678f810

Please sign in to comment.