Skip to content

Commit

Permalink
build: only do major bumps w/ dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Wejendorp committed Jan 2, 2023
1 parent 4006eb0 commit 6dc5d34
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,24 @@
version: 2
updates:
# Enable version updates for npm
- package-ecosystem: 'npm'
- package-ecosystem: "npm"
# Look for `package.json` and `lock` files in the `root` directory
directory: '/'
directory: "/"
# Check the npm registry for updates every day (weekdays)
schedule:
interval: 'daily'
interval: "daily"
commit-message:
prefix: 'fix'
prefix-development: 'build'
include: 'scope'
prefix: "fix"
prefix-development: "build"
include: "scope"
ignore:
- dependency-name: "*"
update-types: [version-update:semver-minor, version-update:semver-patch]
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
commit-message:
prefix: 'fix'
prefix-development: 'build'
include: 'scope'
prefix: "fix"
prefix-development: "build"
include: "scope"

0 comments on commit 6dc5d34

Please sign in to comment.