From 104102777285c9e5573c0389ea8041fc57b380b8 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Tue, 1 Nov 2016 12:06:14 -0600 Subject: [PATCH] Add ISSUE and PR template --- .github/ISSUE_TEMPLATE | 15 +++++++++++++++ .github/PULL_REQUEST_TEMPLATE | 25 +++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE create mode 100644 .github/PULL_REQUEST_TEMPLATE diff --git a/.github/ISSUE_TEMPLATE b/.github/ISSUE_TEMPLATE new file mode 100644 index 0000000..204f577 --- /dev/null +++ b/.github/ISSUE_TEMPLATE @@ -0,0 +1,15 @@ +**Reproduction**: [describe how you are able to reproduce ("trigger") this bug/issue.] + +**Expected behavior**: [describe the behavior you would expect the repro to yield.] + +**Actual behavior**: [describe the actual behavior, which is presented through the repro.]. + +**Build information**: [output of `rustc -V`, `git rev-parse HEAD`, `qemu-i386 -version`, `uname -a`, etc.] + +**Blocking/related**: [issues or PRs blocking or being related to this issue.] + +**Misc**: [optional: for other relevant information that should be known or cannot be described in the other fields.] + +------ + +_If the above does not fit the nature of the issue feel free to modify it._ diff --git a/.github/PULL_REQUEST_TEMPLATE b/.github/PULL_REQUEST_TEMPLATE new file mode 100644 index 0000000..be611fa --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE @@ -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._