From c2bd6472872fd3c4476e9d7c47893242d3a67ad9 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 17 Dec 2018 20:40:42 +0100 Subject: Update issue templates Adding some issue templates. --- .github/ISSUE_TEMPLATE/bug_report.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..09e57d8a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,32 @@ +--- +name: Bug report +about: Let us know about a bug in lombok +title: '' +labels: '' +assignees: '' + +--- + +**Things you should NOT report here** + +* Please do not report any problems with the intellij plugin here; file these with the [intellij lombok plugin github repo](https://github.com/mplushnikov/lombok-intellij-plugin/issues) + +* Please do not report any security vulnerabilities you found in lombok itself here. Instead, let us know privately via [Tidelift security contact](https://tidelift.com/security) so we can coordinate a plan to release a fix responsibly. + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior, preferably in the form of the smallest java source file you can make that will show the problem when compiled with `javac -cp lombok.jar ExampleFile.java` or as sole java file in a fresh new eclipse project. + +If this is not possible, give us enough to reproduce the problem. If you have stack traces or error messages please include all of them, and include screen shots if that will help explain the problem. + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Version info (please complete the following information):** + - Lombok version + - Platform (javac or eclipse, and if so, what is the output of `javac -version` / the version listed in the _about..._ dialog of eclipse. + +**Additional context** +Add any other context about the problem here. -- cgit