From 74116454242fed974bb75526f82dde32b89d878b Mon Sep 17 00:00:00 2001 From: David Date: Fri, 26 Jan 2024 14:12:19 +0100 Subject: [PATCH] Add reviewers for DB PRs automatically (#171579) --- .github/dependabot.yml | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b96ee665a70..238937bbd3d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,13 +1,21 @@ version: 2 + updates: # Maintain dependencies for GitHub Actions - - package-ecosystem: "github-actions" - directory: "/" + - package-ecosystem: github-actions + directory: / schedule: - interval: "daily" + # No need to check for updates more often than once a month + interval: monthly + reviewers: + - Alex-302 + - scripthunter7 - # Maintain dependencies for NPM - - package-ecosystem: "npm" - directory: "/" + # Maintain dependencies for NPM - typically AGLint updates + - package-ecosystem: npm + directory: / schedule: - interval: "daily" + interval: daily + reviewers: + - Alex-302 + - scripthunter7