-
-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Enhance] Extract dependencies from pip.yml to requirements.txt for D…
…ependabot compatibility
- Loading branch information
1 parent
9f03131
commit 204c482
Showing
3 changed files
with
10 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "pip" | ||
directory: "./tasks" # Path where requirements.txt is located; adjust if it's in a subdirectory | ||
directory: "./tasks" # path of requirements.txt | ||
schedule: | ||
interval: "daily" # Change this to "weekly" or "monthly" if needed | ||
open-pull-requests-limit: 5 # Optional: limit the number of open PRs from Dependabot | ||
interval: "daily" # can be changed to weekly or monthly | ||
open-pull-requests-limit: 5 # to limit the number of open PRs from Dependabot | ||
commit-message: | ||
prefix: "fix" # Prefix for commit messages created by Dependabot | ||
prefix: "fix" # for commit messages created by Dependabot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
# pip.yml | ||
# Specifies project dependencies and references requirements.txt | ||
|
||
dependencies: | ||
- "-r ../requirements.txt" |