From b49e9e3b482f7af749a3570757856f0d13093b9a Mon Sep 17 00:00:00 2001 From: Roger Barker Date: Fri, 13 Dec 2024 07:02:54 -0600 Subject: [PATCH] chore: Update Dependabot configuration to improve usability (#4468) **Description**: - Updates interval on github-actions ecosystem to check for updates weekly instead of daily. - Sets the target-branch for all updates to "develop" instead of "main" - sets the versioning-strategy on the npm-ecosystem to increase-if-necessary which should reduce the number of updates that are triggered on the repository. **Related Issue(s)**: Fixes #4467 Signed-off-by: Roger Barker --- .github/dependabot.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 245ec0a42c..505b589b20 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,11 +3,14 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "daily" + interval: weekly open-pull-requests-limit: 10 + target-branch: "develop" + - package-ecosystem: npm directory: "/" schedule: interval: weekly open-pull-requests-limit: 15 target-branch: "develop" + versioning-strategy: increase-if-necessary