Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dependabot and templates #228

Merged
merged 5 commits into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/*"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since the order looks arbitrary here, can we group docker with moby, and put opencontainers after?

Otherwise, LGTM 👍

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm going with that you meant groups within the exclude patterns and not actual dependabot groups

- "*/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/*"
Loading