From 32ba2f1f199200ac961d6064c74a75d1536b0c9d Mon Sep 17 00:00:00 2001 From: Timothy Finnegan Date: Sat, 31 Aug 2024 12:17:36 -0700 Subject: [PATCH] Copied the merge request templates from the core repo to the drivers repo such that PRs have those templates available to them --- .gitlab/issue_templates/Issue_template.md | 92 +++++++++++++++++++ .../Merge_request_template.md | 25 +++++ 2 files changed, 117 insertions(+) create mode 100644 .gitlab/issue_templates/Issue_template.md create mode 100644 .gitlab/merge_request_templates/Merge_request_template.md diff --git a/.gitlab/issue_templates/Issue_template.md b/.gitlab/issue_templates/Issue_template.md new file mode 100644 index 0000000000..42d653e2f0 --- /dev/null +++ b/.gitlab/issue_templates/Issue_template.md @@ -0,0 +1,92 @@ + + + + +- [ ] I agree that I have searched opened and closed issues to prevent duplicates. + +-------------------- + + + +## Description + +Replace me + + + +## Environment info + + + +- Redox OS Release: +0.0.0 Remove me + + +- Operating system: +Replace me +- `uname -a`: +`Replace me` +- `rustc -V`: +`Replace me` +- `git rev-parse HEAD`: +`Replace me` + +- Replace me: +Replace me + + + +## Steps to reproduce + +1. Replace me +2. Replace me +3. ... + + + +## Behavior + + + +- **Expected behavior**: +Replace me + + +- **Actual behavior**: +Replace me + + +``` +Replace me +``` + + +- **Proposed solution**: +Replace me + + + + + +## Optional references + + +Related to: +- #0000 Remove me +- Replace me +- ... + +Blocked by: +- #0000 Remove me +- ... + + + +## Optional extras + +Replace me + + + + + diff --git a/.gitlab/merge_request_templates/Merge_request_template.md b/.gitlab/merge_request_templates/Merge_request_template.md new file mode 100644 index 0000000000..be611fa3e4 --- /dev/null +++ b/.gitlab/merge_request_templates/Merge_request_template.md @@ -0,0 +1,25 @@ +**Problem**: [describe the problem you try to solve with this PR.] + +**Solution**: [describe carefully what you change by this PR.] + +**Changes introduced by this pull request**: + +- [...] +- [...] +- [...] + +**Drawbacks**: [if any, describe the drawbacks of this pull request.] + +**TODOs**: [what is not done yet.] + +**Fixes**: [what issues this fixes.] + +**State**: [the state of this PR, e.g. WIP, ready, etc.] + +**Blocking/related**: [issues or PRs blocking or being related to this issue.] + +**Other**: [optional: for other relevant information that should be known or cannot be described in the other fields.] + +------ + +_The above template is not necessary for smaller PRs._