From aec78b76ab3eb14bef83f6a2df1b1c65c5f201e7 Mon Sep 17 00:00:00 2001 From: Radoslav Dimitrov Date: Mon, 30 May 2022 18:42:55 +0300 Subject: [PATCH] feat: add dependabot for monitoring Go and GitHub Actions dependencies Signed-off-by: Radoslav Dimitrov --- .github/dependabot.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..496998d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,22 @@ +version: 2 +updates: + # Monitor Go dependencies + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "daily" + time: "10:00" + commit-message: + prefix: "chore" + include: "scope" + open-pull-requests-limit: 10 + # Monitor Github Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + time: "10:00" + commit-message: + prefix: "chore" + include: "scope" + open-pull-requests-limit: 10