Skip to content

Commit

Permalink
feat(github): migrate bug report issue template to YAML
Browse files Browse the repository at this point in the history
  • Loading branch information
myhloli committed Jul 13, 2024
1 parent 68386d8 commit cd03e20
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 27 deletions.
27 changes: 0 additions & 27 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

84 changes: 84 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
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

0 comments on commit cd03e20

Please sign in to comment.