-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update and rename bug_report.md to bug_report.yml
- Loading branch information
1 parent
2fc902a
commit 039e3c2
Showing
2 changed files
with
92 additions
and
33 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,92 @@ | ||
name: Bug report | ||
description: Template for bug reports | ||
title: '[Bug] ' | ||
labels: bug | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
# General | ||
- type: textarea | ||
id: reproduce_steps | ||
attributes: | ||
label: To Reproduce Steps to reproduce the behavior | ||
description: | | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
validations: | ||
required: true | ||
- type: input | ||
id: expected_behavior | ||
attributes: | ||
label: Expected behavior | ||
description: A clear and concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: screenshots | ||
attributes: | ||
label: Screenshots | ||
description: If applicable, add screenshots to help explain your problem | ||
placeholder: | | ||
![](https://...) | ||
![](https://...) | ||
![](https://...) | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Logs | ||
description: | | ||
To gather log use: | ||
```shell | ||
logcat --pid=`pidof -s PACKAGENAME` -v color | ||
``` | ||
render: logs | ||
- type: markdown | ||
attributes: | ||
value: | | ||
# Device info | ||
- type: input | ||
id: device | ||
attributes: | ||
label: Device | ||
placeholder: IPhone5 | ||
validations: | ||
required: true | ||
- type: input | ||
id: os | ||
attributes: | ||
label: OS | ||
placeholder: ROM and version, ie Havoc-OS 4.12 | ||
validations: | ||
required: true | ||
- type: input | ||
id: app_version | ||
attributes: | ||
label: App Version | ||
placeholder: 2.19.18 | ||
validations: | ||
required: true | ||
- type: input | ||
id: user_agent | ||
attributes: | ||
label: User Agent | ||
placeholder: Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 | ||
- type: dropdown | ||
id: root_solution | ||
attributes: | ||
label: Root solution | ||
description: Which root you use | ||
options: | ||
- Magisk | ||
- KernelSU | ||
- APatch | ||
validations: | ||
required: true | ||
- type: input | ||
id: additional_context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the problem here |