Skip to content

Commit 340f8ce

Browse files
authored
feat: Added PR template and dependabot configuration (#4)
1 parent e359578 commit 340f8ce

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed

.github/dependabot.yaml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"
7+
assignees:
8+
- "xBlaz3kx"
9+
reviewers:
10+
- "xBlaz3kx"
11+
12+
- package-ecosystem: "gomod"
13+
directory: "/"
14+
schedule:
15+
interval: "monthly"
16+
assignees:
17+
- "xBlaz3kx"
18+
reviewers:
19+
- "xBlaz3kx"

.github/pull_request_template.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
## Proposed changes
2+
3+
Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request.
4+
If it fixes a bug or resolves a feature request, be sure to link to that issue.
5+
6+
## Types of changes
7+
8+
What types of changes does your code introduce?
9+
_Put an `x` in the boxes that apply_
10+
11+
- [ ] Bugfix (non-breaking change which fixes an issue)
12+
- [ ] New feature (non-breaking change which adds functionality)
13+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
14+
- [ ] Documentation Update (if none of the other choices apply)
15+
16+
## Checklist
17+
18+
_Put an `x` in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of
19+
them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before
20+
merging your code._
21+
22+
- [ ] I have read the [CONTRIBUTING](https://github.com/xBlaz3kx/ocppManager-go/blob/master/CONTRIBUTING.md) doc
23+
- [ ] I have signed the CLA
24+
- [ ] Lint and unit tests pass locally with my changes
25+
- [ ] I have added tests that prove my fix is effective or that my feature works
26+
- [ ] I have added necessary documentation (if appropriate)
27+
- [ ] Any dependent changes have been merged and published in downstream modules
28+
29+
## Further comments
30+
31+
If this is a relatively large or complex change, kick off the discussion by explaining why you chose the solution you
32+
did and what alternatives you considered, etc...

0 commit comments

Comments
 (0)