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

feature: github issue forms #51

Merged
merged 5 commits into from Aug 24, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
36 changes: 0 additions & 36 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

75 changes: 75 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
@@ -0,0 +1,75 @@
name: Bug Report
description: File a bug report
title: "[ BUG ]: "
labels:
- "bug"
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the bug you encountered.
options:
- label: I have searched the existing issues
required: true
- type: textarea
attributes:
label: Current Behavior
description: A concise description of what you're experiencing.
validations:
required: true
- type: textarea
attributes:
label: Expected Behavior
description: A concise description of what you expected to happen.
validations:
required: false
- type: dropdown
id: version
attributes:
label: Version
description: What version of our software are you running?
options:
- v1.0.2
- v1.0.3
- v1.1.0
- v1.1.1
- v1.2.0
- v1.2.1
- v1.3.0
validations:
required: true
- type: dropdown
id: operation-system
attributes:
label: What operation system are you using?
leonsteinhaeuser marked this conversation as resolved.
Show resolved Hide resolved
multiple: true
options:
- Windows
- Linux
- MacOS
- Other
- type: textarea
id: to-reproduce
attributes:
label: Steps To Reproduce
description: "Steps to reproduce the behavior:"
placeholder: |
1. How did the configuration look like
2. What type of call was made
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.
render: shell
- type: textarea
id: additional-context
attributes:
label: "Additional context:"
description: Add any other context about the problem here.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1 @@
blank_issues_enabled: false
leonsteinhaeuser marked this conversation as resolved.
Show resolved Hide resolved
20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

45 changes: 45 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
@@ -0,0 +1,45 @@
name: feature request
description: Create a report to help us improve
title: "[ FEATURE REQUEST ]: "
labels:
- feature request
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this feature request report!
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the bug you encountered.
options:
- label: I have searched the existing issues
required: true
- type: textarea
id: related-to-a-problem
attributes:
label: Is your feature request related to a problem? Please describe
description: A clear and concise description of what the problem is.
validations:
required: true
- type: textarea
id: solution-youd-like-to-see
attributes:
label: "Describe the solution you'd like:"
description: A clear and concise description of what you want to happen.
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: Describe alternatives you've considered
description: A clear and concise description of any alternative solutions or features you've considered.
validations:
required: false
- type: textarea
id: additional-context
attributes:
label: "Additional context:"
description: Add any other context or screenshots about the feature request here.
validations:
required: false
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/question.yml
@@ -0,0 +1,22 @@
name: Question
description: Create a report to help us improve
title: "[ QUESTION ]: "
labels:
- question
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this question report!
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the bug you encountered.
options:
- label: I have searched the existing issues
required: true
- type: textarea
id: question
attributes:
label: Describe the question
description: A clear and concise description of what the question is about.
leonsteinhaeuser marked this conversation as resolved.
Show resolved Hide resolved