Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# Basic `dependabot.yml` file with
# minimum configuration for three package managers

version: 2
updates:
# Enable version updates for npm
Expand All @@ -10,6 +7,12 @@ updates:
# Check the npm registry for updates every day (weekdays)
schedule:
interval: "daily"
# Limit open PRs for this ecosystem to 1 and group all updates into one PR
open-pull-requests-limit: 1
groups:
all-dependencies:
patterns:
- "*"

# Enable version updates for GitHub Actions
- package-ecosystem: "github-actions"
Expand All @@ -18,3 +21,8 @@ updates:
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 1
groups:
all-actions:
patterns:
- "*"
Loading