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

chore: change bug report issue template to form #138

Merged
merged 2 commits into from
Jan 7, 2025
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
37 changes: 0 additions & 37 deletions .github/ISSUE_TEMPLATE/bug-report.md

This file was deleted.

93 changes: 93 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
name: Bug Report
description: Report a bug to help improve Akari
title: "[Bug]: "
labels: ["bug"]
assignees: []
body:
- type: textarea
id: description
attributes:
label: Description
description: Provide a clear and concise description of the bug.
placeholder: Describe the bug here...
validations:
required: true

- type: markdown
attributes:
value: |
**Steps to Reproduce**
Please list the steps to reproduce the issue:
- type: textarea
id: steps
attributes:
label: Steps to Reproduce
description: List the steps to reproduce the issue.
placeholder: "1. Go to '...'\n2. Click on '...'\n3. Observe the issue."
validations:
required: true

- type: textarea
id: expected_behavior
attributes:
label: Expected Behavior
description: What did you expect to happen?
placeholder: Describe the expected behavior here...
validations:
required: true

- type: textarea
id: media
attributes:
label: Screenshots/Video
description: Include images or videos to help reproduce the issue, if possible.
placeholder: Provide links to screenshots or videos here...

- type: input
id: browser
attributes:
label: Browser
description: e.g., Chrome, Firefox
placeholder: Specify the browser here...
validations:
required: true

- type: input
id: akari_version
attributes:
label: Akari Version
description: Find it on the settings page.
placeholder: Specify the Akari version here...
validations:
required: true

- type: dropdown
id: pwa
attributes:
label: Installed as PWA?
description: Was the app installed as a Progressive Web App?
options:
- Yes
- No
validations:
required: true

- type: checkboxes
id: severity
attributes:
label: Severity
description: Select the severity level:
options:
- label: Breaking (causes the app or feature to become unusable)
required: true
- label: Non-breaking (affects functionality but has a workaround)
- label: Cosmetic (visual or layout issue)
validations:
required: true

- type: textarea
id: additional_context
attributes:
label: Additional Context
description: Add any other context about the problem here.
placeholder: Provide additional context here...
Loading