Skip to content

Commit

Permalink
chore: add Dependabot configuration (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
jawnsy committed Jan 31, 2022
1 parent ed387a5 commit 34fc62d
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
time: "06:00"
timezone: "America/Chicago"
commit-message:
prefix: "chore"
ignore:
# These actions deliver the latest versions by updating the major
# release tag, so ignore minor and patch versions
- dependency-name: "actions/*"
update-types:
- version-update:semver-minor
- version-update:semver-patch
- dependency-name: "Apple-Actions/import-codesign-certs"
update-types:
- version-update:semver-minor
- version-update:semver-patch
- dependency-name: "marocchino/sticky-pull-request-comment"
update-types:
- version-update:semver-minor
- version-update:semver-patch

- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"
time: "06:00"
timezone: "America/Chicago"
commit-message:
prefix: "chore"

- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
time: "06:00"
timezone: "America/Chicago"
commit-message:
prefix: "chore"
ignore:
# Ignore major updates to Node.js types, because they need to
# correspond to the Node.js engine version
- dependency-name: "@types/node"
update-types:
- version-update:semver-major

0 comments on commit 34fc62d

Please sign in to comment.