Skip to content

Commit 08ef046

Browse files
authored
Merge pull request #37 from microsoft/user/codewatchzen/template
Pull Request Overview This PR adds a new pull request template to standardize the submission details for future contributions. Introduces sections for feature requests, fixes, documentation, styling, refactorings, and releases. Provides a standardized checklist and guidance for summarizing changes and testing details.
2 parents 2eb761c + 3f5f6db commit 08ef046

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

.github/PULL_REQUEST_TEMPLATE.MD

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
### PR Title
2+
3+
#### For feature requests
4+
FEAT: (short-description)
5+
6+
#### For non-feature requests like test case updates, config updates , dependency updates etc
7+
CHORE: (short-description)
8+
9+
### For Fix requests
10+
FIX: (short-description)
11+
12+
### For doc update requests
13+
DOC: (short-description)
14+
15+
### For Formatting, indentation, or styling update
16+
STYLE: (short-description)
17+
18+
### For Refactor, without any feature changes
19+
REFACTOR: (short-description)
20+
21+
### For release related changes, without any feature changes
22+
RELEASE: #<RELEASE_VERSION> (short-description)
23+
24+
-------------------------------------------------------------------
25+
### Summary
26+
<!-- Briefly describe the new feature -->
27+
28+
### Issue Reference
29+
Fixes #<ISSUE_NUMBER> (if applicable)
30+
31+
### Solution Implemented
32+
<!-- Explain the fix implemented -->
33+
- [ ] Fixed `<describe what was fixed>`
34+
- [ ] Updated `<mention any changed functions/files>`
35+
36+
### Checklist
37+
- [ ] **Tests Passed** (if applicable)
38+
- [ ] **Code is formatted**
39+
- [ ] **Docs Updated** (if necessary)
40+
41+
### Testing Performed
42+
<!-- How was this fix tested? -->
43+
- [ ] Unit Tests
44+
- [ ] Manual Testing
45+
- [ ] Python Version: `<mention Python version>`
46+
- [ ] OS: `<mention OS>`
47+
48+
### Additional Notes
49+
<!-- Any extra details or related links -->

0 commit comments

Comments
 (0)