Skip to content

Commit

Permalink
feat: Turn Github Issue templates into interactive forms. fixes #361
Browse files Browse the repository at this point in the history
  • Loading branch information
plon-Susk7 authored Oct 11, 2023
1 parent 3905a40 commit 9efff34
Show file tree
Hide file tree
Showing 6 changed files with 151 additions and 76 deletions.
38 changes: 0 additions & 38 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

72 changes: 72 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
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
20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

37 changes: 37 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yaml
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
18 changes: 0 additions & 18 deletions .github/ISSUE_TEMPLATE/qa_test_checklist.md

This file was deleted.

42 changes: 42 additions & 0 deletions .github/ISSUE_TEMPLATE/qa_test_checklist.yaml
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

0 comments on commit 9efff34

Please sign in to comment.