Skip to content
This repository was archived by the owner on Apr 13, 2026. It is now read-only.
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
59 changes: 59 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Bug report
description: Report a problem you encountered
title: "[Bug]: "
labels: ["bug"]
body:
- type: markdown
attributes:
value: Thanks for taking the time to complete this bug report!
- type: input
id: existing-issues
attributes:
label: Existing Issues
description: Are there any similar existing issues?
placeholder: "#42"
validations:
required: false
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Clearly and concisely describe the bug.
placeholder: Tell us what happened.
validations:
required: true
- type: textarea
id: repro-steps
attributes:
label: Steps to reproduce
value: |
1.
2.
3.
...
validations:
required: true
- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
description: What should have happened?
placeholder: What did you expect to happen?
validations:
required: true
- type: textarea
id: attachments
attributes:
label: Attachments
description: Please include code snippets, stack traces, or compiler errors.
placeholder: Paste code snippets, stack traces, and compiler errors here
validations:
required: false
- type: textarea
id: additional
attributes:
label: Additional Information
description: Add any other useful information about the problem here.
placeholder: Is there any additional helpful information you can share?
validations:
required: false
40 changes: 40 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Feature request
description: Suggest an idea for this project
title: "[Feature]: "
labels: ["feature request", "enhancement", "feature"]
body:
- type: markdown
attributes:
value: Thanks for taking the time to complete this form!
- type: textarea
id: description
attributes:
label: Description
description: Clearly and concisely describe what you would like to change, add, or implement.
placeholder: Tell us your idea.
validations:
required: true
- type: textarea
id: problem
attributes:
label: Problem
description: Is your feature request related to a problem?
placeholder: What problem will this solve?
validations:
required: true
- type: textarea
id: solution
attributes:
label: Proposed Solution
description: How should this be solved?
placeholder: How do you think this should be implemented?
validations:
required: false
- type: textarea
id: alternatives
attributes:
label: Alternatives Considered
description: Are there other possible approaches?
placeholder: Can you think of any other options?
validations:
required: false
12 changes: 12 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Issue #

## Describe your changes

_Clearly and concisely describe what's in this pull request. Include screenshots, if necessary._

## Check all following items

[] I have run the tests locally and they pass
[] I have added tests that prove my fix is effective or that my feature works
[] I have added necessary documentation (if appropriate)
[] I haven't stolen code from another project