Skip to content

Commit

Permalink
chore(issue): use issue forms
Browse files Browse the repository at this point in the history
  • Loading branch information
ajndkr committed Nov 19, 2023
1 parent 3c67a51 commit 77c525d
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 56 deletions.
29 changes: 0 additions & 29 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

42 changes: 42 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Bug report
description: Create a report to help us improve
title: "bug: "
labels: ["bug"]
body:
- type: textarea
id: scenario
attributes:
label: Scenario
description: Describe the scenario in which you encountered the bug
validations:
required: true
- type: textarea
id: actual
attributes:
label: Actual result
description: Describe what actually happened
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected result
description: Describe what you expected to happen
validations:
required: true
- type: textarea
id: criteria
attributes:
label: Acceptance criteria
description: Describe the acceptance criteria(s) for this bug
value: |
- [ ]
validations:
required: true
- type: checkboxes
id: contribute
attributes:
label: Contribute
description: Would you like to fix this bug?
options:
- label: Yes
27 changes: 0 additions & 27 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Feature Request
description: Suggest a new idea for this project
title: "feat: "
labels: ["feature"]
body:
- type: textarea
id: description
attributes:
label: Description
description: Describe the feature you are requesting
placeholder: "As **[the actor]**, I want **[the something]** so I can **[the goal]**"
validations:
required: true
- type: textarea
id: criteria
attributes:
label: Acceptance criteria
description: Describe the acceptance criteria(s) for this bug.
value: |
- [ ]
validations:
required: false
- type: checkboxes
id: contribute
attributes:
label: Contribute
description: Would you like to contribute to this feature?
options:
- label: Yes

0 comments on commit 77c525d

Please sign in to comment.