From 1c59135c0d1d5e54366ae51cc5c31070a4e5ccf1 Mon Sep 17 00:00:00 2001 From: Raido Kaju Date: Thu, 15 Feb 2024 10:51:24 +0200 Subject: [PATCH] feat: add dependabot.yml configuration to auto-assign reviewers --- .github/dependabot.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..7f3f1d82e6 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,20 @@ +version: 2 +updates: + - package-ecosystem: "gradle" + directory: "/src" + schedule: + interval: "daily" + reviewers: + - "nordic-institute/xrd-developers" + - package-ecosystem: "pnpm" + directory: "/src" + schedule: + interval: "daily" + reviewers: + - "nordic-institute/xrd-developers" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + reviewers: + - "nordic-institute/xrd-developers"