Skip to content

Commit

Permalink
feat: github issue templates
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil Faliński committed Jan 30, 2024
1 parent 1f26f14 commit 0536c7d
Show file tree
Hide file tree
Showing 2 changed files with 134 additions and 0 deletions.
86 changes: 86 additions & 0 deletions .github/workflows/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
name: Bug Report
description: File a bug report
title: "[Bug]: "
labels: []
projects: []
assignees: []
body:
- type: markdown
attributes:
value: |
## Thanks for taking the time to fill out this bug report!
- type: textarea
id: what-happened
attributes:
label: Desctibe the bug
description: "A clear and concise description of what the bug is."
placeholder: "I was trying to..."
validations:
required: true
- type: textarea
id: repro
attributes:
label: Reproduction steps
description: "How do you trigger this bug? Please walk us through it step by step."
placeholder: |
1.
2.
...
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected behaviour
description: "What effect do you expect after fix?"
placeholder: "I expect to see..."
validations:
required: true
- type: input
id: dart_version
attributes:
label: Dart version
description: What version of dart are you using?
placeholder: ">=3.1.0 <4.0.0"
validations:
required: true
- type: input
id: flutter_version
attributes:
label: Flutter version
description: What version of flutter are you using?
placeholder: 2.6.7, 3.0.0, 3.1.0, etc.
validations:
required: true
- type: dropdown
id: version
attributes:
label: Package version
description: What version of our package are you using?
options:
- "1.0.0"
validations:
required: true
- type: dropdown
id: platform
attributes:
label: What platform are you seeing the problem on?
multiple: true
options:
- iOS
- Android
- Web
- Windows
- macOS
- Linux
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
placeholder: "Paste logs here or tell us about not having any logs."
render: shell
validations:
required: true
48 changes: 48 additions & 0 deletions .github/workflows/ISSUE_TEMPLATE/feature_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Feature Request Report
description: File a feature request report
title: "[Feature]: "
labels: []
projects: []
assignees: []
body:
- type: markdown
attributes:
value: |
## Thanks for taking the time to fill out this feature request report!
- type: textarea
id: problem_description
attributes:
label: Problem
description: "A clear and concise description of what the problem is."
placeholder: "I was trying to..."
validations:
required: true
- type: textarea
id: desired_solution
attributes:
label: Desired Solution
description: "What do you want to happen?"
placeholder: "I want to be able to..."
validations:
required: true
- type: textarea
id: alternatives_considered
attributes:
label: Alternatives Considered
description: "Have you tried any alternative approaches?"
placeholder: "I tried..."
- type: dropdown
id: platform
attributes:
label: On which platorm do you expect this solution?
multiple: true
options:
- iOS
- Android
- Web
- Windows
- macOS
- Linux
- All
validations:
required: true

0 comments on commit 0536c7d

Please sign in to comment.