-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
50764dd
commit 095e6dd
Showing
1 changed file
with
20 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
version: 2 | ||
updates: | ||
# Python dependencies updates | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" # Check for updates weekly (can be "daily", "weekly", or "monthly") | ||
day: "sunday" # Specify the day updates are checked | ||
ignore: | ||
- dependency-name: "selenium" # Ignore specific package updates | ||
versions: ["<4.0.0"] # Ignore versions below specified | ||
# GitHub Actions updates | ||
- package-ecosystem: "github-actions" | ||
directory: "/" # Check for updates in the root directory | ||
schedule: | ||
interval: "weekly" # Check for updates weekly | ||
day: "monday" # Day updates are checked (optional) | ||
ignore: | ||
- dependency-name: "actions/checkout" # Ignore specific Actions updates | ||
versions: ["<3.0.0"] # Ignore versions below specified |