From 17d0039593830cc0252418db176bb239f3e92526 Mon Sep 17 00:00:00 2001 From: Jongwoo Han Date: Wed, 22 Nov 2023 09:35:34 +0900 Subject: [PATCH] Setup Dependabot (#675) Updating manually, like in #426, #641, requires checking for dependency updates every time. Automating this with Dependabot will save us a lot of work. If we set open-pull-requests-limit to 0, we can only get security updates. Dependabot will check updates every Monday if `schedule.interval` is set to weekly. --- .github/dependabot.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..783498008 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,16 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 5 + labels: + - "dependencies" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 5 + labels: + - "dependencies"