mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-01-10 06:48:04 -05:00
## CHANGES - Add detailed instructions for bug reproduction steps - Include operating system dropdown with specific architectures - Add OS version textarea with command examples - Create installation method dropdown with all options - Replace version checkbox with proper version output field - Improve formatting and organization of form sections - Add helpful links to installation documentation
83 lines
2.6 KiB
YAML
83 lines
2.6 KiB
YAML
name: Bug Report
|
|
description: File a bug report.
|
|
title: "[Bug]: "
|
|
labels: ["bug"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for taking the time to fill out this bug report!
|
|
Please provide as much detail as possible to help us understand and reproduce the issue.
|
|
|
|
- type: textarea
|
|
id: what-happened
|
|
attributes:
|
|
label: What happened?
|
|
description: Also tell us, what did you expect to happen?
|
|
placeholder: Tell us what you see!
|
|
value: "Please provide all the steps to reproduce the bug. I was doing THIS, when THAT happened. I was expecting THAT_OTHER_THING to happen instead."
|
|
validations:
|
|
required: true
|
|
|
|
- type: dropdown
|
|
id: os
|
|
attributes:
|
|
label: Operating System
|
|
options:
|
|
- macOS - Silicon (arm64)
|
|
- macOS - Intel (amd64)
|
|
- Linux - amd64
|
|
- Linux - arm64
|
|
- Windows
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: os-version
|
|
attributes:
|
|
label: OS Version
|
|
description: Please provide details about your OS version by running one of the following commands.
|
|
placeholder: |
|
|
macOS: `sw_vers`
|
|
Linux: `uname -a` or `cat /etc/os-release`
|
|
Windows: `ver`
|
|
render: shell
|
|
|
|
- type: dropdown
|
|
id: installation
|
|
attributes:
|
|
label: How did you install Fabric?
|
|
description: "Please select the method you used to install Fabric. You can find this information in the [Installation section of the README](https://github.com/ksylvan/fabric/blob/main/README.md#installation)."
|
|
options:
|
|
- Release Binary - Windows
|
|
- Release Binary - macOS (arm64)
|
|
- Release Binary - macOS (amd64)
|
|
- Release Binary - Linux (amd64)
|
|
- Release Binary - Linux (arm64)
|
|
- Package Manager - Homebrew (macOS)
|
|
- Package Manager - AUR (Arch Linux)
|
|
- From Source
|
|
- Other
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: version
|
|
attributes:
|
|
label: Version
|
|
description: Please copy and paste the output of `fabric --version` (or `fabric-ai --version` if you installed it via brew) here.
|
|
render: text
|
|
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Relevant log output
|
|
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
|
|
render: shell
|
|
|
|
- type: textarea
|
|
id: screens
|
|
attributes:
|
|
label: Relevant screenshots (optional)
|
|
description: Please upload any screenshots that may help us reproduce and/or understand the issue.
|