Skip to content

Commit

Permalink
Add dependabot and templates (#228)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwneisen authored Sep 26, 2023
1 parent 665bb2d commit 7cdfd87
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## Expected Behavior


## Actual Behavior


## Steps to Reproduce the Problem

1.
1.
1.

## Specifications

- Version:
- Platform:
- Subsystem:
7 changes: 7 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Fixes #

## Proposed Changes

-
-
-
40 changes: 40 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
version: 2
updates:
- package-ecosystem: gomod
directory: "/"
schedule:
interval: 'weekly'
labels:
- 'dependabot'
open-pull-requests-limit: 5
groups:
# We are less concerned about the minor dependencies
minor-dependencies:
patterns:
- "*"
# Skip docker and k8 dependencies. We want to manually keep an eye on these
exclude-patterns:
- "*/docker/*"
- "*/moby/*"
- "*/opencontainers/*"
- "*/cri-api/*"
- "*/kubernetes/*"
- package-ecosystem: gomod
directory: "/"
schedule:
interval: 'monthly'
labels:
- 'dependabot'
open-pull-requests-limit: 5
reviewers:
- 'nwneisen'
- 'neersighted'
groups:
# Our major dependencies are only done as a reminder. These should be manually checked
major-dependencies:
patterns:
- "*/docker/*"
- "*/moby/*"
- "*/opencontainers/*"
- "*/cri-api/*"
- "*/kubernetes/*"

0 comments on commit 7cdfd87

Please sign in to comment.