Skip to content

Commit

Permalink
Add Dependabot configuration for automated dependency updates
Browse files Browse the repository at this point in the history
This configuration file sets up Dependabot to manage dependencies for GitHub Actions and Python packages. It schedules daily updates for both ecosystems and limits the number of open pull requests for Python packages to one. This ensures dependencies are kept up to date continually and systematically.
  • Loading branch information
meanmail committed Sep 19, 2024
1 parent 4ef6aef commit 2395280
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
target-branch: main
schedule:
interval: "daily"
time: "00:00"
groups:
all-actions:
patterns: [ "*" ]

- package-ecosystem: "pip"
directory: "/"
target-branch: main
schedule:
interval: "daily"
time: "00:00"
open-pull-requests-limit: 1

0 comments on commit 2395280

Please sign in to comment.