Skip to content

Commit

Permalink
dependabot I choose you
Browse files Browse the repository at this point in the history
  • Loading branch information
zvolin committed Jan 8, 2024
1 parent 098f062 commit 8923f50
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# `dependabot.yml` file with
# customized schedule for version updates

version: 2
updates:
- package-ecosystem: "cargo"
directory: "/"
# Updates interval
schedule:
interval: "weekly"
# Patterns for ignoring updates
ignore:
# For all packages, ignore all patch updates
- dependency-name: "*"
update-types: ["version-update:semver-patch"]
# With minor updates and dev-deps, open the the PRs in groups
groups:
production-dependencies:
dependency-type: "production"
update-types:
- "minor"
# Separate dev-dependencies for 'definitely not breaking' stuff
development-dependencies:
dependency-type: "development"

# Check github actions updates once a month
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"

0 comments on commit 8923f50

Please sign in to comment.