Skip to content

Commit

Permalink
chore: Update Dependabot configuration to improve usability (#4468)
Browse files Browse the repository at this point in the history
**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 <[email protected]>
  • Loading branch information
rbarker-dev authored and simvalery committed Dec 17, 2024
1 parent 6b99cc6 commit b49e9e3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit b49e9e3

Please sign in to comment.