Skip to content

Commit

Permalink
feat: configure dependabot
Browse files Browse the repository at this point in the history
this PR adds configuration for dependabot for multiple branches, adds
assignees to PRs and allow bumping of all dependencies (direct,
indirect)

Signed-off-by: Karel Simon <[email protected]>
  • Loading branch information
ksimon1 committed Nov 30, 2023
1 parent 1c94517 commit 06a2d83
Showing 1 changed file with 42 additions and 2 deletions.
44 changes: 42 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,47 @@

version: 2
updates:
- package-ecosystem: "gomod" # See documentation for possible values
directory: "/" # Location of package manifests
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"
allow:
- dependency-type: "all"
assignees:
- "ksimon1"
- "0xFelix"
- package-ecosystem: "gomod"
directory: "/"
target-branch: "release-v0.16"
schedule:
interval: "daily"
allow:
- dependency-type: "all"
assignees:
- "ksimon1"
- "0xFelix"
- package-ecosystem: "gomod"
directory: "/"
target-branch: "release-v0.15"
schedule:
interval: "daily"
allow:
- dependency-type: "all"
assignees:
- "ksimon1"
- "0xFelix"
- package-ecosystem: "gomod"
directory: "/"
target-branch: "release-v0.13"
schedule:
interval: "daily"
allow:
- dependency-type: "all"
assignees:
- "ksimon1"
- "0xFelix"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"

0 comments on commit 06a2d83

Please sign in to comment.