Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added issue templates #140

Merged
merged 2 commits into from
Dec 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Bug Report
description: Create a report to help us improve
labels: ["bug"]
body:
- type: input
attributes:
label: Version
description: What version of `tesseract_qt` are you using?
placeholder: Post a tag (e.g., `0.25.0`) or commit hash (e.g., `4ccd10f`)
validations:
required: True

- type: dropdown
attributes:
label: OS Version
description: What OS version are you running?
options:
- Ubuntu 20.04
- Ubuntu 22.04
- Ubuntu 24.04
- MacOS 12
- MacOS 14
- Windows (MSVC 2019)
- Windows (MSVC 2022)
- Other (please specify in the bug description)
validations:
required: True

- type: textarea
attributes:
label: Describe the bug
placeholder: |
A clear and concise description of the bug
validations:
required: True

- type: textarea
attributes:
label: To Reproduce
placeholder: |
Describe the steps to reproduce the behavior
validations:
required: True

- type: textarea
attributes:
label: Expected behavior
placeholder: |
A clear and concise description of what you expected to happen.
validations:
required: True

- type: textarea
attributes:
label: Relevant log output
placeholder: |
Paste any relevant log output here (will be rendered as shell text)
render: shell
33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Feature Request
description: Suggest an idea for this project
labels: ["enhancement"]
body:
- type: textarea
attributes:
label: Is your feature request related to a problem? Please describe.
placeholder: |
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
validations:
required: True

- type: textarea
attributes:
label: Describe the solution you'd like
placeholder: |
A clear and concise description of what you want to happen.
validations:
required: True

- type: textarea
attributes:
label: Describe alternatives you've considered
placeholder: |
A clear and concise description of any alternative solutions or features you've considered.
validations:
required: True

- type: textarea
attributes:
label: Additional context
placeholder: |
Add any other context or screenshots about the feature request here.
Loading