From 8c73d16d2b6d7b859dfc8a0e14864acc66531d2b Mon Sep 17 00:00:00 2001 From: David Christofas Date: Tue, 26 Jan 2021 11:02:54 +0100 Subject: [PATCH] add GitHub native dependabot config See the documentation: https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates --- .github/dependabot.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..0152c9098 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,32 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/ocis" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + + - package-ecosystem: "npm" + directory: "/accounts" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + + - package-ecosystem: "npm" + directory: "/settings" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + + - package-ecosystem: "npm" + directory: "/onlyoffice" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + + - package-ecosystem: "npm" + directory: "/konnectd" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 +