diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..9f7e1941 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,51 @@ +--- +name: 🐛 Bug report +about: Create a report to help us improve. +title: "" +labels: bug +assignees: "" +--- + +### Describe the bug + + + +- [ ] I have verified that the issue is reproducible against the latest version + of the project. +- [ ] I have searched through existing issues to verify that this issue is not + already known. + +### Minimal Reproducible Example + + + +```java +If applicable and possible, please replace this section with the code that +triggered the isue. +``` + +
+Logs + +```sh +Please replace this sentence with log output, if applicable. +``` +
+ +### Expected behavior + + + +### Setup + + + +- Operating system (e.g. MacOS Monterey). +- Java version (i.e. `java --version`, e.g. `17.0.3`). +- Error Prone version (e.g. `2.15.0`). +- Error Prone Support version (e.g. `0.3.0`). + +### Additional context + + diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index caae1842..22cd3227 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -20,7 +20,7 @@ Before doing so, please: When filing a bug report, please include the following: - Any relevant information about your environment. This should generally - include the output of `java -version`, as well as the version of Error Prone + include the output of `java --version`, as well as the version of Error Prone you're using. - A description of what is going on (e.g. logging output, stacktraces). - A minimum reproducible example, so that other developers can try to reproduce