Skip to content

Commit

Permalink
Allow dependabot to propose updates (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkjpryor authored Nov 21, 2023
1 parent 3437c54 commit 84ed5e5
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---

version: 2

updates:
# Automatically propose PRs for out-of-date GitHub actions
- package-ecosystem: github-actions
directory: "/"
schedule:
# Check for new versions weekly
interval: weekly
# Update all actions in a single PR
groups:
github-actions:
patterns: ["*"]
labels:
- automation
- gha-update

# Automatically propose PRs for Python dependencies
- package-ecosystem: pip
directory: "/"
schedule:
# Check for new versions daily
interval: daily
# Open one PR at a time to limit concurrent use of test infra
open-pull-requests-limit: 1
labels:
- automation
- pip-update

0 comments on commit 84ed5e5

Please sign in to comment.