From 21ad8168f722c311a38f22dd74b4fa88c49934ef Mon Sep 17 00:00:00 2001 From: James Rasell Date: Fri, 19 Jun 2026 07:15:58 +0100 Subject: [PATCH] ci: Add basic dependabot config for weekly action and go checks. --- .github/dependabot.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..5a8447f --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,27 @@ +# Copyright IBM Corp. 2017, 2026 +# SPDX-License-Identifier: MPL-2.0 + +version: 2 + +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + commit-message: + prefix: "[chore] : " + groups: + github-actions: + patterns: + - "*" + + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + commit-message: + prefix: "[chore] : " + groups: + go: + patterns: + - "*"