Skip to content

Commit

Permalink
github: Allow dependabot to file PRs
Browse files Browse the repository at this point in the history
It will automatically open PRs to update go.mod, tools/go.mod and
.github/workflows when there are version changes.

github.com/openshift/* and k8s.io/* are ignored as these updates can be
tricky, and we want to stick to the versions corresponding to the
openshift bundle we are releasing crc with.

Signed-off-by: Christophe Fergeau <cfergeau@redhat.com>
  • Loading branch information
cfergeau authored and praveenkumar committed Jan 30, 2024
1 parent a82f0b5 commit 8897591
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
version: 2
updates:
- package-ecosystem: gomod
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
ignore:
- dependency-name: "github.com/openshift/*"
- dependency-name: "k8s.io/*"
- package-ecosystem: gomod
directory: "/tools"
schedule:
interval: weekly
open-pull-requests-limit: 10
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"

0 comments on commit 8897591

Please sign in to comment.