diff options
author | Signal Linden <signal@lindenlab.com> | 2025-07-02 09:20:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-02 09:20:59 -0700 |
commit | c58caf6b42f1efbab95e4acdaa8adf9c3d53c930 (patch) | |
tree | 5f0f7fca7d397a3b300293f86b37e370b2e109f1 /.github | |
parent | 7a06abed9b8f542cdb7f8f7b015013ddd436f929 (diff) |
Create pull_request_template.md
Provide a PR template to expedite both internal and external contributions.
Diffstat (limited to '.github')
-rw-r--r-- | .github/pull_request_template.md | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000000..9130b90218 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,36 @@ +## Description + +<!-- +Describe what this PR changes or adds. Include any relevant context or motivation. +--> + +## Related Issues + +- [ ] **Please link to a relevant GitHub issue for additional context.** + - **Bug Fix:** Link to an issue that includes reproduction steps and testing guidance. + - **Feature/Enhancement:** Link to an issue with a write-up, rationale, and requirements. + +Issue Link: <!-- e.g., closes #123 or relates to #456 --> + +--- + +## Checklist + +Please ensure the following before requesting review: + +- [ ] I have provided a clear title and detailed description for this pull request. +- [ ] The PR is linked to a relevant issue with sufficient context (see above). +- [ ] I have tested the changes locally and verified they work as intended. +- [ ] All new and existing tests pass (if applicable). +- [ ] Code follows the project's style guidelines. +- [ ] Documentation (if needed) has been updated. +- [ ] Any dependent changes have been merged and published in downstream modules +- [ ] I have reviewed the [contributing guidelines](../CONTRIBUTING.md). + +--- + +## Additional Notes + +<!-- +Add any other information, screenshots, or suggestions for reviewers here. +--> |