Skip to content

Commit

Permalink
Update dependabot.yml
Browse files Browse the repository at this point in the history
Add a versioning strategy option to relax the depencies versionning
  • Loading branch information
jhillairet authored Apr 25, 2023
1 parent 27144b2 commit b449a5d
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,20 @@ version: 2
updates:

# Maintain dependencies for GitHub Actions
- package-ecosystem: github-actions
directory: /
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: weekly
interval: "monthly"
target-branch: "dependencies"
assignees:
- jhillairet
- "jhillairet"

# Maintain dependencies for python
- package-ecosystem: pip
directory: /
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: monthly
interval: "monthly"
target-branch: "dependencies"
versioning-strategy: "increase-if-necessary"
assignees:
- jhillairet
- "jhillairet"

0 comments on commit b449a5d

Please sign in to comment.