Skip to content

Commit

Permalink
chore: update dependabot schedule and pull request limit
Browse files Browse the repository at this point in the history
- Change dependency update interval from weekly to monthly
- Increase open pull requests limit from 10 to 50

This change aims to reduce the frequency of dependency update checks and manage the number of open pull requests more effectively.
  • Loading branch information
Undertone0809 committed Nov 5, 2024
1 parent e34a236 commit db302ed
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,29 @@ updates:
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
interval: "monthly"
allow:
- dependency-type: "all"
commit-message:
prefix: ":arrow_up:"
open-pull-requests-limit: 10
open-pull-requests-limit: 50

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
interval: "monthly"
allow:
- dependency-type: "all"
commit-message:
prefix: ":arrow_up:"
open-pull-requests-limit: 10
open-pull-requests-limit: 50

- package-ecosystem: "docker"
directory: "/docker"
schedule:
interval: "weekly"
interval: "monthly"
allow:
- dependency-type: "all"
commit-message:
prefix: ":arrow_up:"
open-pull-requests-limit: 10
open-pull-requests-limit: 50

0 comments on commit db302ed

Please sign in to comment.