chore: convert issues templates to forms

This commit is contained in:
Mikhail Zolotukhin 2021-09-23 21:21:46 +03:00
parent a95c9321a0
commit 604c5cf577
7 changed files with 130 additions and 97 deletions

View File

@ -1,45 +0,0 @@
<!--
SPDX-FileCopyrightText: 2021 Mikhail Zolotukhin <mail@genda.life>
SPDX-License-Identifier: MIT
-->
---
name: Bug report
about: Create a report that something is not working as intended
title: "[BUG]: "
labels: bug
assignees: ''
---
## Summary
Quick summary of the problem
## To Reproduce
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
## Expected behavior
A clear and concise description of what you expected to happen.
## Screenshots
If applicable, add screenshots to help explain your problem.
## System info
Platform: X11/Wayland
Plasma Version: 5.23/master
Bismuth version: 1.0/master (please add latest commit hash)
## Additional context
Add any other context about the problem here.

70
.github/ISSUE_TEMPLATE/bug_report.yml vendored Normal file
View File

@ -0,0 +1,70 @@
# SPDX-FileCopyrightText: none
# SPDX-License-Identifier: MIT
---
name: Bug Report
description: File a bug report
title: "[Bug]: "
labels: [bug]
# assignees:
body:
- type: textarea
id: summary
attributes:
label: Summary
description: Quick summary of the problem
validations:
required: true
- type: textarea
id: steps-to-reproduce
attributes:
label: Steps to Reproduce
description: Steps to reproduce the behavior
placeholder: |
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
validations:
required: true
- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen.
validations:
required: true
- type: textarea
id: screenshots
attributes:
label: Screenshots
description: If applicable, add screenshots to help explain your problem.
validations:
required: false
- type: input
id: script-version
attributes:
label: Bismuth version
validations:
required: true
- type: input
id: plasma-version
attributes:
label: KDE Plasma version
validations:
required: true
- type: dropdown
id: platform
attributes:
label: The platform KWin is running on
options:
- Wayland
- X11
validations:
required: true
- type: textarea
id: misc
attributes:
label: Additional context
description: Add any other context about the problem here.
validations:
required: false

4
.github/ISSUE_TEMPLATE/config.yml vendored Normal file
View File

@ -0,0 +1,4 @@
# SPDX-FileCopyrightText: none
# SPDX-License-Identifier: MIT
---
blank_issues_enabled: true

22
.github/ISSUE_TEMPLATE/dev-issue.yml vendored Normal file
View File

@ -0,0 +1,22 @@
# SPDX-FileCopyrightText: none
# SPDX-License-Identifier: MIT
---
name: Development Issue
description: Non user-facing issue, e.g. refactoring, build or ci improvements
title: "[DEV]: "
labels: [dev]
# assignees: ''
body:
- type: textarea
id: summary
attributes:
label: Summary
description: Quick summary
validations:
required: true
- type: textarea
id: misc
attributes:
label: Additional info
validations:
required: false

View File

@ -1,22 +0,0 @@
<!--
SPDX-FileCopyrightText: 2021 Mikhail Zolotukhin <mail@genda.life>
SPDX-License-Identifier: MIT
-->
---
name: Development Issue
about: Non user-facing issue, e.g. refactoring, build or ci improvements
title: "[DEV]: "
labels: dev
assignees: ''
---
## Summary
Summary...
## Additional info
Additional info

34
.github/ISSUE_TEMPLATE/feat_request.yml vendored Normal file
View File

@ -0,0 +1,34 @@
# SPDX-FileCopyrightText: none
# SPDX-License-Identifier: MIT
---
name: Feature request
description: Suggest an idea for a new feature
title: "[FEATURE]: "
labels: [enhancement]
# assignees: ''
body:
- type: textarea
id: summary
attributes:
label: Summary
description: Is your feature request related to a problem? Please describe.
validations:
required: true
- type: textarea
id: solution
attributes:
label: A clear and concise description of what you want to happen
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: A clear and concise description of any alternative solutions or features you've considered.
validations:
required: false
- type: textarea
id: misc
attributes:
label: Additional info
validations:
required: false

View File

@ -1,30 +0,0 @@
<!--
SPDX-FileCopyrightText: 2021 Mikhail Zolotukhin <mail@genda.life>
SPDX-License-Identifier: MIT
-->
---
name: Feature request
about: Suggest an idea for a new feature
title: "[FEATURE]: "
labels: enhancement
assignees: ''
---
## Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
## Describe the solution you'd like
A clear and concise description of what you want to happen.
## Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
## Additional context
Add any other context or screenshots about the feature request here.