Skip to content

Commit 9a5e4da

Browse files
authored
✨ feat: add issue template (#146)
1 parent e085d6b commit 9a5e4da

File tree

5 files changed

+107
-8
lines changed

5 files changed

+107
-8
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
name: Bug Report
3+
about: Create a report to help us improve
4+
title: "[BUG] "
5+
labels: bug
6+
assignees: ''
7+
---
8+
9+
**Describe the bug**
10+
A clear and concise description of what the bug is.
11+
12+
**To Reproduce**
13+
Steps to reproduce the behavior:
14+
1. Go to '...'
15+
2. Click on '....'
16+
3. Scroll down to '....'
17+
4. See error
18+
19+
**Expected behavior**
20+
A clear and concise description of what you expected to happen.
21+
22+
**Screenshots**
23+
If applicable, add screenshots to help explain your problem.
24+
25+
**Desktop (please complete the following information):**
26+
- OS: [e.g., Windows 10]
27+
- Browser: [e.g., Chrome, Safari]
28+
- Version: [e.g., 22]
29+
30+
**Smartphone (please complete the following information):**
31+
- Device: [e.g., iPhone X]
32+
- OS: [e.g., iOS 14.4]
33+
- Browser: [e.g., stock browser, Safari]
34+
- Version: [e.g., 22]
35+
36+
**Additional context**
37+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/config.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Issues and Suggestions
4+
url: https://github.com/mss-boot-io/mss-boot-admin/issues/new
5+
about: If none of the templates fit, you can submit a custom issue or suggestion.
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: Custom Issue
3+
about: Create a custom issue or suggestion
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
---
8+
9+
**Issue or Suggestion**
10+
A clear and concise description of your issue or suggestion.
11+
12+
**Relevant Information**
13+
Add any other context, information, or screenshots about the issue here.
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Feature Request
3+
about: Suggest an idea for this project
4+
title: "[FEATURE] "
5+
labels: enhancement
6+
assignees: ''
7+
---
8+
9+
**Is your feature request related to a problem? Please describe.**
10+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
11+
12+
**Describe the solution you'd like**
13+
A clear and concise description of what you want to happen.
14+
15+
**Describe alternatives you've considered**
16+
A clear and concise description of any alternative solutions or features you've considered.
17+
18+
**Additional context**
19+
Add any other context or screenshots about the feature request here.

.github/PULL_REQUEST_TEMPLATE.md

+33-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,38 @@
11
## Description
22

3-
<!-- A clear and concise description what these changes does. -->
3+
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
44

5-
## Checklist
5+
Fixes # (issue)
66

7-
<!-- Replace the [ ] with [x] to check the boxes. -->
7+
## Type of change
88

9-
- [ ] the pull request title describes what this PR does (not a vague title like `Update index.md`)
10-
- [ ] the pull request targets the _default_ branch of the repository (`main`)
11-
- [ ] tests are added for the changes I made (if any source code was modified)
12-
- [ ] documentation added or updated
13-
- [ ] I have run the project locally and verified that there are no errors
9+
Please delete options that are not relevant.
10+
11+
- [ ] Bug fix (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+
- [ ] This change requires a documentation update
15+
16+
## How Has This Been Tested?
17+
18+
Please describe the tests that you ran to verify your changes. Please also note any relevant details for your test configuration.
19+
20+
- [ ] Test A
21+
- [ ] Test B
22+
23+
**Test Configuration**:
24+
* Firmware version:
25+
* Hardware:
26+
* Toolchain:
27+
* SDK:
28+
29+
## Checklist:
30+
31+
- [ ] My code follows the style guidelines of this project
32+
- [ ] I have performed a self-review of my own code
33+
- [ ] I have commented my code, particularly in hard-to-understand areas
34+
- [ ] I have made corresponding changes to the documentation
35+
- [ ] My changes generate no new warnings
36+
- [ ] I have added tests that prove my fix is effective or that my feature works
37+
- [ ] New and existing unit tests pass locally with my changes
38+
- [ ] Any dependent changes have been merged and published in downstream modules

0 commit comments

Comments
 (0)