From 8c0d9d1f7c1d1d62110ac5a7679184fe5f513cfe Mon Sep 17 00:00:00 2001 From: Ken Cochrane Date: Wed, 27 Sep 2023 08:13:03 -0400 Subject: [PATCH 1/2] Add dependabot Enable dependabot Signed-off-by: Ken Cochrane --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..0c13a07 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,9 @@ +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" From dda2ff4772f6e5dea522b663e55cee3bc295d255 Mon Sep 17 00:00:00 2001 From: Ken Cochrane Date: Wed, 27 Sep 2023 08:18:39 -0400 Subject: [PATCH 2/2] added dependabot groups added Dependabot groups so that we don't have a ton of PRs Signed-off-by: Ken Cochrane --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0c13a07..c401b39 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,3 +7,15 @@ updates: directory: "/" schedule: interval: "weekly" + commit-message: + prefix: "chore(deps):" + groups: + go-patch: + update-types: + - "patch" + go-minor: + update-types: + - "minor" + go-major: + update-types: + - "major"