-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7b298c6
commit 06e204a
Showing
2 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
name: Bug Report | ||
description: Encountered an error while using the software or feature | ||
title: '[Bug]: ' | ||
labels: [ "bug?" ] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Please submit according to the following requirements | ||
### 1. After submission, you need to specify the label and deadline. | ||
--- | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Environment Information | ||
Please modify the following information according to the actual usage environment. | ||
- type: input | ||
id: env-program-ver | ||
attributes: | ||
label: Software Version | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: env-vm-ver | ||
attributes: | ||
label: Operating Environment | ||
description: Select the system version on which the software is running | ||
options: | ||
- Windows (64) | ||
- Windows (32/x84) | ||
- MacOS | ||
- Linux | ||
- Ubuntu | ||
- CentOS | ||
- ArchLinux | ||
- UNIX (Android) | ||
- Other (please specify below) | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: env-vm-arch | ||
attributes: | ||
label: Operating Architecture | ||
description: (Optional) Select the system architecture on which the software is running | ||
options: | ||
- AMD64 | ||
- x86 | ||
- ARM [32] (Alias:AArch32 / ARMv7) | ||
- ARM [64] (Alias:AArch64 / ARMv8) | ||
- Other | ||
|
||
- type: textarea | ||
id: reproduce-steps | ||
attributes: | ||
label: Reproduce Steps | ||
description: | | ||
What operations do we need to perform to make the bug appear? | ||
The concise and clear reproduction steps can help us locate the problem more quickly. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: What is the expected result? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: actual | ||
attributes: | ||
label: What is the actual result? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: logging | ||
attributes: | ||
label: Logging (Optional) | ||
render: golang | ||
|
||
- type: textarea | ||
id: extra-desc | ||
attributes: | ||
label: Additional Description (Optional) |