From 11af7d67ab200c0dd7acbb21ad44d362d4555f55 Mon Sep 17 00:00:00 2001 From: Karel Simon Date: Thu, 30 Nov 2023 09:53:33 +0100 Subject: [PATCH] feat: introduce dependabot config this PR introduces dependabot config for main and other release branches. Signed-off-by: Karel Simon --- .github/dependabot.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..6f0491aa --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,33 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "daily" + allow: + - dependency-type: "all" + - package-ecosystem: "gomod" + directory: "/" + target-branch: "release-v0.3" + schedule: + interval: "daily" + allow: + - dependency-type: "all" + - package-ecosystem: "gomod" + directory: "/" + target-branch: "release-v0.2" + schedule: + interval: "daily" + allow: + - dependency-type: "all" + - package-ecosystem: "gomod" + directory: "/" + target-branch: "release-v0.1" + schedule: + interval: "daily" + allow: + - dependency-type: "all" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly"