Skip to content
Closed
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
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/01-bug-report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: 🐞 Bug report
description: Report a bug or unexpected behavior.
labels: "Bug"
body:
- type: markdown
attributes:
value: Thanks for taking the time to fill out this form!

- type: textarea
id: what-happened
attributes:
label: Issue Details
description: Please provide a set of steps to reproduce the issue.
placeholder:

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The 'placeholder' field is defined but empty on line 14, while the template content is provided in the 'value' field. This might be confusing as both serve similar purposes. Consider removing the empty 'placeholder' field since you're already using 'value' to provide the template content.

value: |
Steps to reproduce:
1.
2.
3.
validations:
required: true

- type: textarea
id: screens
attributes:
label: Screenshots
description: |
If applicable add screenshots explaining your problem.
You can drag and drop images or paste them from clipboard.
Use `<details> </details>` tag to hide screenshots under the spoiler.
value: |
<details><summary>Screenshot 1</summary>

<!-- paste your screenshot here -->

</details>
validations:
required: false
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: true

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The file should be named config.yml instead of config.yaml. GitHub's documentation specifies using the .yml extension for issue template configuration files.

Loading