-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Turn Github Issue templates into interactive forms. fixes #361
- Loading branch information
1 parent
3905a40
commit 9efff34
Showing
6 changed files
with
151 additions
and
76 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "[Bug]: " | ||
labels: ["bug", "triage"] | ||
projects: ["tattle-made/uli"] | ||
assignees: | ||
- dennybrain | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the bug | ||
description: Write A clear and concise description of what the bug is. | ||
placeholder: A bug happened! | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: Steps to reproduce | ||
description: Steps to reproduce the behavior | ||
placeholder: "1. Go to '...' \n2. Click on '....' \n3. Scroll down to '....' \n4. See error" | ||
validations: | ||
required: true | ||
- type: input | ||
id: expected | ||
attributes: | ||
label: Expected behavior | ||
description: A clear and concise description of what you expected to happen. | ||
placeholder: I expected... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: screenshots | ||
attributes: | ||
label: Screenshots | ||
description: If applicable, add screenshots to help explain your problem | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: browsers | ||
attributes: | ||
label: What browsers are you seeing the problem on? | ||
multiple: true | ||
options: | ||
- Firefox | ||
- Chrome | ||
- Safari | ||
- Microsoft Edge | ||
- Other | ||
- type: dropdown | ||
id: os | ||
attributes: | ||
label: Which operating system are you on? | ||
multiple: false | ||
options: | ||
- Windows | ||
- MacOS | ||
- Linux | ||
- Android | ||
- iOS | ||
- type: textarea | ||
id: system | ||
attributes: | ||
label: System Description | ||
description: More information about your setup | ||
validations: | ||
required: false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Feature request | ||
description: Suggest an idea for this project | ||
title: "Feature request" | ||
labels: ["enhancement"] | ||
projects: ["tattle-made/uli"] | ||
assignees: | ||
- dennybrain | ||
body: | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Is your feature request related to a problem? Please describe. | ||
description: A clear and concise description of what the problem is. | ||
placeholder: Ex. I'm always frustrated when.. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Describe the solution you would 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 have considered. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: additional_context | ||
attributes: | ||
label: Addtional Context | ||
description: Add any other context or screenshots about the feature request here. | ||
validations: | ||
required: false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: QA Test Checklist | ||
description: Use this as a guide for manual QA | ||
title: "[QA]" | ||
labels: ["qa"] | ||
projects: ["tattle-made/uli"] | ||
assignees: | ||
- dennybrain | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: dropdown | ||
id: browsers | ||
attributes: | ||
label: What browsers are you seeing the problem on? | ||
multiple: true | ||
options: | ||
- Firefox | ||
- Chrome | ||
- Brave | ||
- Microsoft Edge | ||
- Other | ||
- type: checkboxes | ||
id: features | ||
attributes: | ||
label: Features to check | ||
options: | ||
- label: Users are able to archive a tweet on their device | ||
- label: Users are able to send an archived tweet to their email | ||
- label: Users are able to hide tweets with OGBV on their feed | ||
- label: Users are able to update their Preference | ||
- label: Uli is able to hide slurs on user's feed | ||
required: false | ||
- type: textarea | ||
id: additional_context | ||
attributes: | ||
label: Something other than a feature? | ||
description: QA testing for something else than a feature. | ||
placeholder: Example, problem in viewing the image logo | ||
validations: | ||
required: false |