From 34fc62def582d55c65a24e212cf5b1e6f6c01f49 Mon Sep 17 00:00:00 2001 From: Jonathan Yu Date: Sun, 30 Jan 2022 18:53:37 -0800 Subject: [PATCH] chore: add Dependabot configuration (#97) --- .github/dependabot.yml | 49 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..743b19d986 --- /dev/null +++ b/.github/dependabot.yml @@ -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