diff options
author | Mahdyar Hasanpour <thisismahdyar@gmail.com> | 2021-07-16 14:11:00 +0430 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-16 11:41:00 +0200 |
commit | 4eadb9cf758b632b113bb793d5f1e38f4c304392 (patch) | |
tree | ad55ce991017fe06616176481cd5a1ad5dc88075 /.github/ISSUE_TEMPLATE/bug_report.yml | |
parent | 23f9348e2c2341df71b1891eb4607f60ddd5a204 (diff) | |
download | zsh-4eadb9cf758b632b113bb793d5f1e38f4c304392.tar.gz zsh-4eadb9cf758b632b113bb793d5f1e38f4c304392.tar.bz2 zsh-4eadb9cf758b632b113bb793d5f1e38f4c304392.zip |
chore: convert the repo issue templates to issue forms (#10050)
Diffstat (limited to '.github/ISSUE_TEMPLATE/bug_report.yml')
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 000000000..af2973fec --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,69 @@ +name: Bug report +description: Create a report to help us improve Oh My Zsh +labels: 'Bug' +body: + - type: markdown + attributes: + value: | + ## Self Check + - Try searching existing [GitHub Issues](https://github.com/ohmyzsh/ohmyzsh/issues?q=is%3Aissue) (open or closed) for similar issues. + - Try reaching out on the [Discord server](https://discord.gg/ohmyzsh) for help. + - type: textarea + validations: + required: true + attributes: + label: Describe the bug + description: A clear description of what the bug is. + - type: textarea + validations: + required: true + attributes: + label: Steps to reproduce + description: | + Steps to reproduce the problem. + placeholder: | + For example: + 1. Enable plugin '...' + 2. Run command '...' or try to complete command '...' + 3. See error + - type: textarea + validations: + required: true + attributes: + label: Expected behavior + description: A brief description of what should happen. + - type: textarea + attributes: + label: Screenshots and recordings + description: | + If applicable, add screenshots to help explain your problem. You can also record an asciinema session: https://asciinema.org/ + - type: input + validations: + required: true + attributes: + label: OS / Distro + placeholder: e.g. Windows 10, Ubuntu 20.04, Arch Linux, macOS 10.15... + - type: input + validations: + required: true + attributes: + label: Zsh version + description: Run `echo $ZSH_VERSION` to check. + placeholder: e.g. 5.6 + - type: input + validations: + required: true + attributes: + label: Terminal emulator + placeholder: e.g. iTerm2, Gnome Terminal... + - type: dropdown + attributes: + label: If using WSL on Windows, which version of WSL + description: Run `wsl -l -v` to check. + options: + - WSL1 + - WSL2 + - type: textarea + attributes: + label: Additional context + description: Add any other context about the problem here. This can be themes, plugins, custom settings... |