Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(template): adjust bug report template to include screenshot and WIP sections #2899

Merged
merged 4 commits into from
Jul 24, 2024
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
16 changes: 10 additions & 6 deletions .github/ISSUE_TEMPLATE/bug-report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,16 @@ body:
- "3.11"
- "3.10"

- type: markdown
ogabrielluiz marked this conversation as resolved.
Show resolved Hide resolved
- type: textarea
id: screenshot
attributes:
value: |
Screenshot error - If applicable, add screenshots to help explain your problem.
label: Screenshot
description: "If applicable, add screenshots to help explain your problem."
placeholder: "Paste your screenshot here."

- type: markdown
- type: textarea
ogabrielluiz marked this conversation as resolved.
Show resolved Hide resolved
id: flow-file
attributes:
value: |
Flow file - Add your flow if applicable to help replicate the problem.
label: Flow File
description: "Add your flow if applicable to help replicate the problem."
placeholder: "Add your flow link here."
2 changes: 0 additions & 2 deletions .github/ISSUE_TEMPLATE/feature-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ body:

- type: textarea
id: contribution
validations:
required: true
attributes:
label: Your Contribution
description: |
Expand Down
58 changes: 58 additions & 0 deletions .github/ISSUE_TEMPLATE/work-in-progress.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Work in Progress
description: Use this template to describe the new feature or improvement you are currently working on.
labels: [enhancement]

body:
- type: markdown
attributes:
value: |
## Work in Progress

Thank you for contributing to our project! Please fill out the sections below to describe the new feature or improvement you are currently working on.

- type: input
id: title
attributes:
label: Title
description: Provide a concise title for your feature or improvement.
placeholder: "Short and descriptive title"
validations:
required: true

- type: dropdown
id: type
attributes:
label: Type
description: Is this a new feature or an improvement?
options:
- New Feature
- Improvement
validations:
required: true

- type: textarea
id: description
attributes:
label: Description
description: Provide a detailed description of the feature or improvement.
placeholder: "Explain the feature or improvement in detail"
validations:
required: true

- type: textarea
id: use-case
attributes:
label: Use Case
description: Describe the use case or user story that this feature or improvement addresses.
placeholder: "As a [user], I want to [do something] so that [benefit]."
validations:
required: false

- type: textarea
id: implementation
attributes:
label: Implementation Plan
description: Outline your plan for implementing this feature or improvement.
placeholder: "Describe how you plan to implement this feature or improvement."
validations:
required: false
Loading