-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(dependabot): configure dependabot updates (#648)
* ci(dependabot): configure dependabot updates Signed-off-by: Thuan Vo <[email protected]> * ci(code-owner): add code owner configurations * ci(dependabot): ignore all updates to openshift api --------- Signed-off-by: Thuan Vo <[email protected]>
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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,2 @@ | ||
go.mod @cryostatio/maintainers | ||
go.sum @cryostatio/maintainers |
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,22 @@ | ||
version: 2 | ||
|
||
updates: | ||
- package-ecosystem: gomod | ||
directory: / | ||
schedule: | ||
interval: daily | ||
reviewers: | ||
- "cryostatio/reviewers" | ||
labels: | ||
- "dependencies" | ||
- "chore" | ||
- "safe-to-test" | ||
open-pull-requests-limit: 20 | ||
ignore: | ||
- dependency-name: k8s.io/* | ||
update-types: ["version-update:semver-major", "version-update:semver-minor"] | ||
- dependency-name: sigs.k8s.io/* | ||
update-types: ["version-update:semver-major", "version-update:semver-minor"] | ||
- dependency-name: github.com/openshift/api | ||
- dependency-name: github.com/onsi/* | ||
update-types: ["version-update:semver-major", "version-update:semver-minor"] |