Skip to content

Commit

Permalink
chore(issue-template): rewrite to templates to yml renderer (#456)
Browse files Browse the repository at this point in the history
  • Loading branch information
BeardedPlatypus authored Jul 8, 2024
1 parent 08b8294 commit a9523e7
Show file tree
Hide file tree
Showing 6 changed files with 131 additions and 69 deletions.
32 changes: 0 additions & 32 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

62 changes: 62 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Bug Report
description: Create a report to help us improve
title: "[Bug]: "
labels: ["bug", "triage"]
assignees:
- arthurvd
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: bug-description
attributes:
label: Describe the bug
placeholder: A clear and concise description of what the bug is.
validations:
required: true
- type: textarea
id: reproduction-steps
attributes:
label: Reproduction steps
placeholder: |
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '...'
3. Scroll down to '...'
4. See error
validations:
required: true
- type: textarea
id: expected-behavior
attributes:
label: Reproduction steps
placeholder: A clear and concise description of what you expected to happen.
validations:
required: true
- type: textarea
id: screenshots
attributes:
label: Screenshots
placeholder: If applicable, add screenshots to help explain your problem.
Tip: You can attach images by clicking this area to highlight it and then dragging files in.
validations:
required: false
- type: textarea
id: version-info
attributes:
label: Version info (please complete the following information)
value: |
- OS: [e.g. Windows]
- Version [e.g. 0.1.5]
validations:
required: true
- type: textarea
id: additional-context
attributes:
label: Additional context
placeholder: Add any other context or screenshots about the bug report here.
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
validations:
required: false
20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

40 changes: 40 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.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: "[Feat]: "
labels: ["enhancement", "triage"]
assignees:
- arthurvd
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this feature request!
- type: textarea
id: existing-problem
attributes:
label: Is your feature request related to a problem? Please describe
placeholder: A clear and concise description of what the problem or missing functionality is.
validations:
required: true
- type: textarea
id: ideal-solution
attributes:
label: Describe the solution you'd like to see
placeholder: A clear and concise description of what you want to happen.
validations:
required: true
- type: textarea
id: alternative-solutions
attributes:
label: Describe the alternatives you've considered
placeholder: A clear and concise description of any alternative solutions or features you've considered (if applicable).
validations:
required: false
- type: textarea
id: additional-context
attributes:
label: Additional context
placeholder: Add any other context or screenshots about the feature request here.
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
validations:
required: false
17 changes: 0 additions & 17 deletions .github/ISSUE_TEMPLATE/task.md

This file was deleted.

29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/task.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Task
description: Describe a piece of work (typically non-coding) that should be done.
title: "[Task]: "
labels: ["chore", "triage"]
assignees:
- arthurvd
body:
- type: textarea
id: what-is-the-need
attributes:
label: What is the need for this task?
placeholder: Why should this work be done
validations:
required: true
- type: textarea
id: what-is-the-task
attributes:
label: What is the task?
placeholder: A clear and concise description of what you want to be done.
validations:
required: true
- type: textarea
id: additional-context
attributes:
label: Additional context
placeholder: Add any other context or screenshots about the task here.
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
validations:
required: false

0 comments on commit a9523e7

Please sign in to comment.