-
-
Notifications
You must be signed in to change notification settings - Fork 182
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
d9bf917
commit 982fda9
Showing
1 changed file
with
18 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,18 @@ | ||
# .github/dependabot.yml | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" # Location in the repository where dependabot should check for updates | ||
schedule: | ||
interval: "weekly" # Options: daily, weekly, monthly | ||
commit-message: | ||
prefix: "chore" # Customize commit message prefix (e.g., "chore", "build") | ||
prefix-development: "chore" # Optional, prefix for development dependencies | ||
reviewers: | ||
- "your-reviewer-username" # Optional, replace with GitHub usernames for PR review requests | ||
labels: | ||
- "dependencies" # Optional, labels to add to PRs (e.g., "dependencies", "github-actions") | ||
ignore: | ||
- dependency-name: "actions/checkout" # Optional, ignore updates for specific actions | ||
versions: ["2.x"] # Optional, ignore specific versions |