Skip to content

Commit

Permalink
fix(ci): reduce dependabot PR spam (#1284)
Browse files Browse the repository at this point in the history
* group dependabot updates based upon dev/prod

* ignore patch updates
  • Loading branch information
insipx authored Nov 18, 2024
1 parent 283a890 commit 3fff4fa
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,50 @@ updates:
directory: "/"
schedule:
interval: "weekly"
groups:
dependencies:
dependency-type: "production"
dev-dependencies:
dependency-type: "development"
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-patch"]
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
# Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.)
directory: "/"
schedule:
interval: "weekly"
groups:
actions-deps:
patterns:
- "*"
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-patch"]
# Maintain dependencies for yarn
- package-ecosystem: "npm"
directory: "/bindings_wasm"
schedule:
interval: "weekly"
groups:
wasm-prod:
dependency-type: "production"
wasm-dev:
dependency-type: "development"
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-patch"]
# Maintain dependencies for yarn
- package-ecosystem: "npm"
directory: "/bindings_node"
schedule:
interval: "weekly"
groups:
node-prod:
dependency-type: "production"
node-dev:
dependency-type: "development"
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-patch"]

0 comments on commit 3fff4fa

Please sign in to comment.