Skip to content

Commit

Permalink
ci: Add Dependabot for npm packages
Browse files Browse the repository at this point in the history
  • Loading branch information
ottnorml authored Oct 4, 2023
1 parent a07d42b commit 1f0f847
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,53 @@ updates:
schedule:
day: saturday
interval: weekly
# app
- package-ecosystem: npm
directory: /
open-pull-requests-limit: 5
schedule:
interval: daily
groups:
app-development-dependencies:
dependency-type: "development"
patterns:
- "*"
update-types:
- minor
- patch
app-production-dependencies:
dependency-type: "production"
patterns:
- "*"
update-types:
- minor
- patch
ignore:
- dependency-name: "*"
update-types:
- version-update:semver-major
# website
- package-ecosystem: npm
directory: /website
open-pull-requests-limit: 5
schedule:
interval: daily
groups:
website-development-dependencies:
dependency-type: "development"
patterns:
- "*"
update-types:
- minor
- patch
website-production-dependencies:
dependency-type: "production"
patterns:
- "*"
update-types:
- minor
- patch
ignore:
- dependency-name: "*"
update-types:
- version-update:semver-major

0 comments on commit 1f0f847

Please sign in to comment.