Skip to content

Commit

Permalink
add issue templates (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
lenkan authored Oct 21, 2024
1 parent 36bed7b commit 5536180
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: "Bug report"
description: Bug report template
title: "Bug: short description"
labels: ["bug", "triage"]
body:
- type: input
id: version
attributes:
label: Version
validations:
required: true
- type: input
id: Evnironment
attributes:
label: Environment
description: (OS, Node.js version)
- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
validations:
required: true
- type: textarea
id: actual-behavior
attributes:
label: Actual behavior
validations:
required: true
- type: textarea
id: steps-to-reproduce
attributes:
label: Steps to reproduce
validations:
required: true
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: "Feature request"
description: Feature request template
title: "Feature request: short description"
labels: ["feature request", "triage"]
body:
- type: textarea
id: desired-behavior
attributes:
label: Feature request description/rationale
validations:
required: true

0 comments on commit 5536180

Please sign in to comment.