forked from opendatalab/MinerU
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(github): migrate bug report issue template to YAML
- Loading branch information
Showing
2 changed files
with
84 additions
and
27 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,84 @@ | ||
name: Bug Report | ||
description: Create a bug report for MinerU | ||
|
||
# We omit `title: "..."` so that the field defaults to blank. If we set it to | ||
# empty string, Github seems to reject this .yml file. | ||
|
||
body: | ||
|
||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description of the bug | ||
description: | | ||
A clear and concise description of the bug. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: reproduce | ||
attributes: | ||
label: How to reproduce the bug | ||
|
||
# Should not word-wrap this description here. | ||
description: | | ||
* Explain the steps required to reproduce the bug. | ||
* Include required code snippets, example files, etc. | ||
* Describe what you expected to happen (if not obvious). | ||
* If applicable, add screenshots to help explain the problem. | ||
* Include any other information that could be relevant, for example information about the Python environment. | ||
For problems when building or installing MinerU: | ||
* Give the **exact** build/install commands that were run. | ||
* Give the **complete** output from these commands. | ||
validations: | ||
required: true | ||
|
||
# - type: markdown | ||
# attributes: | ||
# value: | | ||
# # The information below is required. | ||
|
||
|
||
- type: dropdown | ||
id: os_name | ||
attributes: | ||
label: Operating system | ||
#multiple: true | ||
options: | ||
- | ||
- Windows | ||
- Linux | ||
- MacOS | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: python_version | ||
attributes: | ||
label: Python version | ||
#multiple: true | ||
# Need quotes around `3.10` otherwise it is treated as a number and shows as `3.1`. | ||
options: | ||
- | ||
- "3.12" | ||
- "3.11" | ||
- "3.10" | ||
- "3.9" | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: device_mode | ||
attributes: | ||
label: Device mode | ||
#multiple: true | ||
options: | ||
- | ||
- cpu | ||
- cuda | ||
- mps | ||
validations: | ||
required: true |