-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
1 changed file
with
20 additions
and
5 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,18 +1,33 @@ | ||
# Basic dependabot.yml to update gomod | ||
|
||
# Basic dependabot.yml to update gomod, Github Actions and Docker | ||
version: 2 | ||
updates: | ||
# Maintain dependencies for the core library | ||
- package-ecosystem: "gomod" | ||
target-branch: "master" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
# Check for npm updates at 9am UTC (5am EST) | ||
time: "10:00" | ||
timezone: "UTC" | ||
reviewers: | ||
- "mrz1836" | ||
assignees: | ||
- "mrz1836" | ||
labels: | ||
- "chore" | ||
open-pull-requests-limit: 10 | ||
|
||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
target-branch: "master" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
day: "monday" | ||
reviewers: | ||
- "mrz1836" | ||
assignees: | ||
- "mrz1836" | ||
# Labels must be created first | ||
labels: | ||
- "update" | ||
- "chore" | ||
open-pull-requests-limit: 10 |