From 4a62b365a9d20b41821de8be7614a9366d1422b7 Mon Sep 17 00:00:00 2001 From: Dirk Wetter Date: Wed, 25 Nov 2020 20:12:00 +0100 Subject: [PATCH 1/5] remove old universal template --- .github/ISSUE_TEMPLATE.md | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index aec5b59..0000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,18 +0,0 @@ -Please make sure that you provide enough information so that we understand what your issue is about. - -0. Did you check the documentation in ~/doc/ or, if it is a different problem: Did you google for it? - -1. uname -a - -2. testssl version from the banner: testssl.sh -b 2>/dev/null | head -4 | tail -2 - -3. git log | head -1 (if running from git repo) - -4. openssl version used by testssl.sh: testssl.sh -b 2>/dev/null | awk -F':' '/openssl/ { print $2}' - -5. steps to reproduce: testssl.sh or docker command line, if possible incl. host - -6. what exactly was happening, output is needed - -7. what did you expect instead? - From d1481616db8ad9f3782d51f3c0078ab0a67318a9 Mon Sep 17 00:00:00 2001 From: Dirk Wetter Date: Wed, 25 Nov 2020 21:07:54 +0100 Subject: [PATCH 2/5] Update issue templates Use the new style suggested bu github --- .github/ISSUE_TEMPLATE/bug_report.md | 26 ++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 27 +++++++++++++++++++ .../ISSUE_TEMPLATE/other-issues---question.md | 10 +++++++ 3 files changed, 63 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/other-issues---question.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..939830c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,26 @@ +--- +name: Bug report +about: Create a report to help us improve +title: "[BUG / possible BUG]" +labels: '' +assignees: '' + +--- + +_**Please just don't remove this template. We need to reproduce the bug and need concise information for that**_ + +**Command line / docker command to reproduce** + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Your system (please complete the following information):** + - OS: ``awk -F\" '/PRETTY_NAME/ { print $2 }' /etc/os-release`` + - Platform: ``uname -srm`` + - Version: ``testssl.sh -b 2>/dev/null | head -4 | tail -2`` + - Version if running from git repo: ``git log | head -1`` + - OpenSSL: ``testssl.sh -b 2>/dev/null | awk -F':' '/openssl/ { print $2}'`` + + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..750bbb4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,27 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: "[Feature request]" +labels: '' +assignees: '' + +--- + +--- +name: Feature request +about: Suggest an idea for this project +title: "[Feature Request]" +labels: '' +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. +`` diff --git a/.github/ISSUE_TEMPLATE/other-issues---question.md b/.github/ISSUE_TEMPLATE/other-issues---question.md new file mode 100644 index 0000000..a7a4be3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/other-issues---question.md @@ -0,0 +1,10 @@ +--- +name: Other issues / Question +about: Anything whihc is not covered by a bug report or feature request +title: '' +labels: '' +assignees: '' + +--- + + From 0ed7ede6de434f2ea190dce9fe592d8a9e98bd05 Mon Sep 17 00:00:00 2001 From: Dirk Wetter Date: Wed, 25 Nov 2020 21:12:47 +0100 Subject: [PATCH 3/5] Update other-issues---question.md --- .github/ISSUE_TEMPLATE/other-issues---question.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/other-issues---question.md b/.github/ISSUE_TEMPLATE/other-issues---question.md index a7a4be3..898c032 100644 --- a/.github/ISSUE_TEMPLATE/other-issues---question.md +++ b/.github/ISSUE_TEMPLATE/other-issues---question.md @@ -1,6 +1,6 @@ --- name: Other issues / Question -about: Anything whihc is not covered by a bug report or feature request +about: Anything else which is not covered by a bug report or feature request title: '' labels: '' assignees: '' From cab2ee77067fec2ef5f562125e6e475032c9db44 Mon Sep 17 00:00:00 2001 From: Dirk Wetter Date: Wed, 25 Nov 2020 21:13:44 +0100 Subject: [PATCH 4/5] Update bug_report.md --- .github/ISSUE_TEMPLATE/bug_report.md | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 939830c..5808112 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -21,6 +21,5 @@ A clear and concise description of what you expected to happen. - Version if running from git repo: ``git log | head -1`` - OpenSSL: ``testssl.sh -b 2>/dev/null | awk -F':' '/openssl/ { print $2}'`` - **Additional context** Add any other context about the problem here. From b47bc9e871cf19e068e651bede7f1b4ff82dd965 Mon Sep 17 00:00:00 2001 From: Dirk Wetter Date: Wed, 25 Nov 2020 21:19:26 +0100 Subject: [PATCH 5/5] Update bug_report.md --- .github/ISSUE_TEMPLATE/bug_report.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 5808112..3ea885a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -7,19 +7,24 @@ assignees: '' --- -_**Please just don't remove this template. We need to reproduce the bug and need concise information for that**_ +_**Please don't remove this template. We would like to reproduce the bug and need concise information. **_ + **Command line / docker command to reproduce** +In addition the target of your scan would be helpful. If you don't want to disclose it publicly: ``grep SWCONTACT testssl.sh``. + **Expected behavior** A clear and concise description of what you expected to happen. + **Your system (please complete the following information):** - OS: ``awk -F\" '/PRETTY_NAME/ { print $2 }' /etc/os-release`` - Platform: ``uname -srm`` - Version: ``testssl.sh -b 2>/dev/null | head -4 | tail -2`` - Version if running from git repo: ``git log | head -1`` - OpenSSL: ``testssl.sh -b 2>/dev/null | awk -F':' '/openssl/ { print $2}'`` + **Additional context** Add any other context about the problem here.