|
1 | | -## Purpose |
2 | | -<!-- Describe the intention of the changes being proposed. What problem does it solve or functionality does it add? --> |
3 | | -* ... |
4 | | - |
5 | | -## Does this introduce a breaking change? |
6 | | -<!-- Mark one with an "x". --> |
7 | | -``` |
8 | | -[ ] Yes |
9 | | -[ ] No |
10 | | -``` |
11 | | - |
12 | | -## Pull Request Type |
13 | | -What kind of change does this Pull Request introduce? |
14 | | - |
15 | | -<!-- Please check the one that applies to this PR using "x". --> |
16 | | -``` |
17 | | -[ ] Bugfix |
18 | | -[ ] Feature |
19 | | -[ ] Code style update (formatting, local variables) |
20 | | -[ ] Refactoring (no functional changes, no api changes) |
21 | | -[ ] Documentation content changes |
22 | | -[ ] Other... Please describe: |
23 | | -``` |
24 | | - |
25 | | -## How to Test |
26 | | -* Get the code |
27 | | - |
28 | | -``` |
29 | | -git clone [repo-address] |
30 | | -cd [repo-name] |
31 | | -git checkout [branch-name] |
32 | | -npm install |
33 | | -``` |
34 | | - |
35 | | -* Test the code |
36 | | -<!-- Add steps to run the tests suite and/or manually test --> |
37 | | -``` |
38 | | -``` |
39 | | - |
40 | | -## What to Check |
41 | | -Verify that the following are valid |
42 | | -* ... |
43 | | - |
44 | | -## Other Information |
45 | | -<!-- Add any other helpful information that may be needed here. --> |
| 1 | +## Task Issue |
| 2 | + |
| 3 | +Closes #<!-- issue number --> |
| 4 | + |
| 5 | +## Description |
| 6 | + |
| 7 | +<!-- What changes does this PR make and why? --> |
| 8 | + |
| 9 | +## Checklist |
| 10 | + |
| 11 | +- [ ] Linked to task issue |
| 12 | +- [ ] Changes are minimal (only what the task requires) |
| 13 | +- [ ] Tests added/updated |
| 14 | +- [ ] All tests pass (`make test`) |
| 15 | +- [ ] Linting passes (`make lint`) |
| 16 | +- [ ] No secrets or credentials committed |
| 17 | +- [ ] Documentation updated (if applicable) |
| 18 | +- [ ] Follows project conventions (docs/conventions.md) |
| 19 | + |
| 20 | +## Reviewer Notes |
| 21 | + |
| 22 | +<!-- Anything reviewers should know or pay attention to --> |
| 23 | + |
| 24 | +## Security Considerations |
| 25 | + |
| 26 | +<!-- Any security implications of these changes? (new inputs, auth changes, dependency updates, etc.) --> |
0 commit comments