From 3370680ac8269fedabafa26736ba0487f22e142e Mon Sep 17 00:00:00 2001 From: Karel Simon Date: Thu, 30 Nov 2023 09:46:55 +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 | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..007b0fbd0 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,40 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "daily" + allow: + - dependency-type: "all" + - package-ecosystem: "gomod" + directory: "/" + target-branch: "release-v0.18" + schedule: + interval: "daily" + allow: + - dependency-type: "all" + - package-ecosystem: "gomod" + directory: "/" + target-branch: "release-v0.17" + schedule: + interval: "daily" + allow: + - dependency-type: "all" + - package-ecosystem: "gomod" + directory: "/" + target-branch: "release-v0.16" + schedule: + interval: "daily" + allow: + - dependency-type: "all" + - package-ecosystem: "gomod" + directory: "/" + target-branch: "release-v0.15" + schedule: + interval: "daily" + allow: + - dependency-type: "all" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly"