-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Configure Dependabot for watching and maintaining our Go dependencies * Configure Dependabot for watching and maintaining our NPM dependencies (website) * Add more comments * Add "ok-to-test" label to Dependabot PRs
- Loading branch information
Showing
1 changed file
with
42 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,42 @@ | ||
# This is a configuration file for Dependabot, a GitHub tool that tries to keep dependencies updated on a regular basis | ||
# by raising pull requests to update those dependencies. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
|
||
# Maintain dependencies for Go | ||
- package-ecosystem: "gomod" | ||
directory: "/" | ||
# Set this to 0 to disable version updates | ||
open-pull-requests-limit: 5 | ||
commit-message: | ||
prefix: "Go" | ||
schedule: | ||
interval: "weekly" | ||
reviewers: | ||
- "odo-mantainers" | ||
labels: | ||
- "area/dependency" | ||
- "kind/task" | ||
- "ok-to-test" | ||
|
||
# Maintain dependencies for Website builds | ||
- package-ecosystem: "npm" | ||
directory: "/docs/website" | ||
# Set this to 0 to disable version updates | ||
open-pull-requests-limit: 3 | ||
commit-message: | ||
prefix: "Website" | ||
schedule: | ||
interval: "weekly" | ||
reviewers: | ||
- "odo-mantainers" | ||
labels: | ||
- "area/dependency" | ||
- "kind/task" | ||
|
||
## Feel free to add other package managers here if needed. | ||
## See https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem | ||
## for the full list of supported ecosystems. |