Skip to content

Commit b04cd1a

Browse files
Initial commit
0 parents  commit b04cd1a

File tree

10 files changed

+877
-0
lines changed

10 files changed

+877
-0
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
## Expected Behavior
2+
3+
4+
## Actual Behavior
5+
6+
7+
## Steps to Reproduce the Problem
8+
9+
1.
10+
2.
11+
3.
12+
13+
## Specifications
14+
15+
- Version:
16+
- Platform:
17+
- Subsystem:

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
GitHub Issue: #
2+
<!-- Link to relevant GitHub issue if applicable.
3+
All PRs should be associated with an issue -->
4+
5+
## Proposed Changes
6+
<!-- Please check one or more that apply to this PR. -->
7+
8+
- [ ] Bug fix
9+
- [ ] Feature
10+
- [ ] Code style update (formatting)
11+
- [ ] Refactoring (no functional changes, no api changes)
12+
- [ ] Build or CI related changes
13+
- [ ] Documentation content changes
14+
- [ ] Other, please describe:
15+
16+
17+
## What is the current behavior?
18+
<!-- Please describe the current behavior that you are modifying,
19+
or link to a relevant issue. -->
20+
21+
22+
## What is the new behavior?
23+
<!-- Please describe the new behavior after your modifications. -->
24+
25+
26+
## Checklist
27+
28+
Please check that your PR fulfills the following requirements:
29+
30+
- [ ] Documentation has been added/updated.
31+
- [ ] Automated tests for the changes have been added/updated.
32+
- [ ] Updated [BREAKING_CHANGES.md](../BREAKING_CHANGES.md) (if you introduced a breaking change).
33+
34+
<!-- If this PR contains a breaking change, please describe the impact
35+
and migration path for existing applications below. -->
36+
37+
## Other information
38+
<!-- Please provide any additional information if necessary -->
39+
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Conventional Commits
2+
3+
on: [pull_request]
4+
5+
env:
6+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7+
8+
jobs:
9+
validate-commits:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Check out code into the Go module directory
13+
uses: actions/checkout@v1
14+
- name: Commitsar check
15+
uses: docker://aevea/commitsar

0 commit comments

Comments
 (0)