From e7ca8deda613726e45afd3610f844eb8a2c0a99b Mon Sep 17 00:00:00 2001 From: Ukeje Goodness Date: Sat, 11 Jan 2025 12:21:13 +0100 Subject: [PATCH] Create pull_request_template.md --- .github/pull_request_template.md | 57 ++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..f3d8ffd4 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,57 @@ + + + +### Description +Please provide a clear and concise description of your changes. Explain **what** this pull request accomplishes and * +*why** it is needed. + +--- + +### Related Issue + +If this pull request addresses an existing issue, please link to it below. Use the `Fixes #` syntax to +close the issue automatically when the pull request is merged. + +Example: + +- Fixes: #1234 + +--- + +### Contributor License Agreement (CLA) + +By contributing to this project, you agree to the terms of +the [Canonical Contributor License Agreement (CLA)](https://ubuntu.com/legal/contributors). +If you have not already signed the CLA, please do so [here](https://ubuntu.com/legal/contributors). + +--- + +### Commit Message for Squash Merge + +If this pull request is merged with the squash option, what should the commit message be? +Provide the desired commit message below: + +Example: +[Category] Brief description of changes made + +--- + +### Checklist + +- [ ] I have read and followed the [Ubuntu Server contributing guide](https://documentation.ubuntu.com/server/contributing/). +- [ ] I have signed the [Contributor License Agreement (CLA)](https://ubuntu.com/legal/contributors). +- [ ] My changes are well-documented, and I have updated the documentation as needed. +- [ ] My pull request is linked to an existing issue (if applicable). +- [ ] I have tested my changes, and they work as expected. +- [ ] New and existing unit tests pass locally with my changes. + +--- + +### Additional Notes (Optional) + +Add any extra information or context that reviewers may need to know. This could include testing instructions, +screenshots, or links to related discussions. + +--- + +Thank you for contributing to the Ubuntu Server documentation!