-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from ccoVeille/github-actions-dependabot
ci: add dependabot to GitHub Actions
- Loading branch information
Showing
1 changed file
with
21 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,21 @@ | ||
version: 2 | ||
updates: | ||
# Maintain golang dependencies defined in go.mod | ||
# These would open PR, these PR would be tested with the CI | ||
# They will have to be merged manually by a maintainer | ||
- package-ecosystem: "gomod" | ||
directory: "/" | ||
open-pull-requests-limit: 10 # avoid spam, if no one reacts | ||
schedule: | ||
interval: "daily" | ||
time: "11:00" | ||
|
||
# Maintain dependencies for GitHub Actions | ||
# These would open PR, these PR would be tested with the CI | ||
# They will have to be merged manually by a maintainer | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
open-pull-requests-limit: 10 # avoid spam, if no one reacts | ||
schedule: | ||
interval: "daily" | ||
time: "11:00" |