From 6bffa4529f53fe89b33f583692824551ca6da931 Mon Sep 17 00:00:00 2001 From: Trevor Cooper Date: Fri, 3 Sep 2021 20:19:25 -0700 Subject: [PATCH 1/2] Add default bug report and feature request issue templates Using admin privs and settings->features->issue templates per [Github documentation](https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository) add default Issue templates to the repository. --- .github/ISSUE_TEMPLATE/bug_report.md | 32 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 ++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..de45577e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,32 @@ +--- +name: Bug report +about: Create a report to help us improve +title: "[BUG] " +labels: 'type: bug' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Desktop (please complete the following information):** + - OS: [e.g. iOS] + - Browser [e.g. chrome, safari] + - Version [e.g. 22] + +**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 00000000..d96802d0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: "[FEATURE] " +labels: 'type: enhancement' +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. + +**Additional context** +Add any other context or screenshots about the feature request here. -- 2.43.5 From f4f126242e7141c0371ce02183f2aa1847621454 Mon Sep 17 00:00:00 2001 From: Trevor Cooper Date: Tue, 7 Sep 2021 23:53:32 -0700 Subject: [PATCH 2/2] Rename openqa-test-suite-needle-update.md Rename openqa-test-suite-needle-update.md to openqa_update.md as attempt to restore issue template picker. This rename both shortens the name of the template and replaces `-` characters with `_`. Likely won't make a difference but it's worth a try. --- .../{openqa-test-suite-needle-update.md => openqa_update.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/ISSUE_TEMPLATE/{openqa-test-suite-needle-update.md => openqa_update.md} (100%) diff --git a/.github/ISSUE_TEMPLATE/openqa-test-suite-needle-update.md b/.github/ISSUE_TEMPLATE/openqa_update.md similarity index 100% rename from .github/ISSUE_TEMPLATE/openqa-test-suite-needle-update.md rename to .github/ISSUE_TEMPLATE/openqa_update.md -- 2.43.5