Files
coder/.github/dependabot.yml
T
Kyle Carberry 27c24de764 chore: Reduce dependabot frequency to weekly (#560)
It was tiring seeing 5+ PRs a day for dependency updates.
Reducing this to a week should save some time!
2022-03-25 11:21:20 -05:00

50 lines
1.4 KiB
YAML

version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
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: "/site/"
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