Skip to content

Commit

Permalink
chore: add Bug Report issue template
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasaarcoverde committed Apr 18, 2024
1 parent 313dbd8 commit 270983e
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 39 deletions.
39 changes: 0 additions & 39 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

63 changes: 63 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: Bug Report
description: Report a problem with Shoreline
labels: ['bug', 'status: pending']
body:
- type: textarea
id: summary
attributes:
label: Summary
description: Provide a short description of the problem.
validations:
required: true
- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen.
- type: textarea
id: current-behavior
attributes:
label: Current behavior
description: What happens instead of the expected behavior? If applicable, add screenshots/videos to help explain the problem.
value: |
Wrap animated gifs/videos in a details tag:
<details>
<summary>Summary of your gif(s)</summary>
<img src="..." alt="Description of what the gif shows">
</details>
- type: textarea
id: reproducible-example
attributes:
label: Reproducible Example
description: Provide a reduced test case with the [Shoreline sandbox template]().
value: |
[Link to sandbox]()
- type: textarea
id: suggested-solution
attributes:
label: Suggested solution
description: How could we solve this bug? What changes would need to made?
- type: textarea
id: additional-context
attributes:
label: Additional context
description: Add any other context about the problem here.
- type: input
id: shoreline-package-version
attributes:
label: Shoreline package version
- type: input
id: browser
attributes:
label: Browser
- type: dropdown
id: package-manager
attributes:
label: Package Manager
options:
- pnpm
- npm
- yarn
default: 0
validations:
required: true

0 comments on commit 270983e

Please sign in to comment.