diff options
author | Jake McDermott <yo@jakemcdermott.me> | 2021-06-24 16:22:26 +0200 |
---|---|---|
committer | Jake McDermott <yo@jakemcdermott.me> | 2021-06-25 14:41:54 +0200 |
commit | bb78a0b4ec2967d1861583f7a7fdadb4e866ba3b (patch) | |
tree | be3af39efb860a1793ee6d2ce57b84086a8db67f | |
parent | Merge pull request #10490 from shanemcd/downstream-fixes (diff) | |
download | awx-bb78a0b4ec2967d1861583f7a7fdadb4e866ba3b.tar.xz awx-bb78a0b4ec2967d1861583f7a7fdadb4e866ba3b.zip |
Add bug report form
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md | 41 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 135 |
2 files changed, 135 insertions, 41 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 51dc7a5385..0000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -name: "\U0001F41B Bug report" -about: Create a report to help us improve - ---- -<!-- Issues are for **concrete, actionable bugs and feature requests** only - if you're just asking for debugging help or technical support, please use: - -- http://web.libera.chat/?channels=#ansible-awx -- https://groups.google.com/forum/#!forum/awx-project - -We have to limit this because of limited volunteer time to respond to issues! --> - -##### ISSUE TYPE - - Bug Report - -##### SUMMARY -<!-- Briefly describe the problem. --> - -##### ENVIRONMENT -* AWX version: X.Y.Z -* AWX install method: openshift, minishift, docker on linux, docker for mac, boot2docker -* Ansible version: X.Y.Z -* Operating System: -* Web Browser: - -##### STEPS TO REPRODUCE - -<!-- Please describe exactly how to reproduce the problem. --> - -##### EXPECTED RESULTS - -<!-- What did you expect to happen when running the steps above? --> - -##### ACTUAL RESULTS - -<!-- What actually happened? --> - -##### ADDITIONAL INFORMATION - -<!-- Include any links to sosreport, database dumps, screenshots or other -information. --> diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000000..f71dce2cb8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,135 @@ +--- +name: Bug Report +description: Create a report to help us improve +title: "[Bug]: " +labels: + - bug +body: + - type: markdown + attributes: + value: | + Issues are for **concrete, actionable bugs and feature requests** only. For debugging help or technical support, please use: + - The #ansible-awx channel on irc.libera.chat + - https://groups.google.com/forum/#!forum/awx-project + + - type: checkboxes + id: terms + attributes: + label: Please confirm the following + options: + - label: I agree to follow this project's [code of conduct](http://docs.ansible.com/ansible/latest/community/code_of_conduct.html). + required: true + - label: I have checked the [current issues](https://github.com/ansible/awx/issues) for duplicates. + required: true + - label: I understand that AWX is open source software provided for free and that I am not entitled to status updates or other assurances. + required: true + + - type: textarea + id: summary + attributes: + label: Summary + description: Briefly describe the problem. + validations: + required: false + + - type: input + id: awx-version + attributes: + label: AWX version + description: What version of AWX are you running? + validations: + required: true + + - type: dropdown + id: awx-install-method + attributes: + label: Installation method + description: How did you install AWX? + multiple: false + options: + - kubernetes + - openshift + - minishift + - docker on linux + - docker for mac + - boot2docker + validations: + required: true + + - type: dropdown + id: modified-architecture + attributes: + label: Modifications + description: >- + Have you modified the installation, deployment topology, or container images in any way? If yes, please + explain in the "additional information" field at the bottom of the form. + multiple: false + options: + - "no" + - "yes" + validations: + required: true + + - type: input + id: ansible-version + attributes: + label: Ansible version + description: What version of Ansible are you running? + validations: + required: false + + - type: input + id: operating-system + attributes: + label: Operating system + description: What operating system are you using? + validations: + required: false + + - type: dropdown + id: browsers + attributes: + label: Web browser + description: Which browsers are affected? + multiple: true + options: + - Firefox + - Chrome + - Safari + - Edge + validations: + required: false + + - type: textarea + id: steps-to-reproduce + attributes: + label: Steps to reproduce + description: >- + Starting from a new installation of the system, describe exactly how a developer or quality engineer can reproduce the bug + on infrastructure that isn't yours. Include any and all resources created, input values, test users, roles assigned, playbooks used, etc. + validations: + required: true + + - type: textarea + id: expected-results + attributes: + label: Expected results + description: What did you expect to happpen when running the steps above? + validations: + required: true + + - type: textarea + id: actual-results + attributes: + label: Actual results + description: What actually happened? + validations: + required: true + + - type: textarea + id: additional-information + attributes: + label: Additional information + description: Include any relevant log output, links to sosreport, database dumps, screenshots, or other information. + validations: + required: false |