diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index c64a0feb..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: bug -assignees: '' - ---- - -**Describe the bug** -Write A clear and concise description of what the bug is. - -**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. - -**Desktop (please complete the following information):** - - OS: [e.g. iOS] - - Browser [e.g. chrome, safari] - - Version [e.g. 22] - -**Smartphone (please complete the following information):** - - Device: [e.g. iPhone6] - - OS: [e.g. iOS8.1] - - Browser [e.g. stock browser, safari] - - Version [e.g. 22] - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 00000000..4709bf8b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,68 @@ +name: Bug Report +description: File a bug report +title: "[Bug]: " +labels: ["bug", "triage"] +projects: ["tattle-made/uli"] +assignees: + - '' +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 happended!" + 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" + value: "" + 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: image + id: screenshots + attributes: + label: Screenshots + description: If applicable, add screenshots to help explain your problem. + validations: + required: false + - type: input + id: desktop + attributes: + label: Desktop + description: Please complete the following information: + placeholder: "OS: [e.g. iOS] \nBrowser [e.g. chrome, safari] \nVersion [e.g. 22]" + validations: + required: false + -type: input + id: smartphone + attributes: + label: Smartphone + description: Please complete the following information: + placeholder: "Device: [e.g. iPhone6] \nOS: [e.g. iOS8.1] \nBrowser [e.g. stock browser, safari] \nVersion [e.g. 22]" + validations: + required: false + - type: checkboxes + id: terms + attributes: + label: Code of Conduct + description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com) + options: + - label: I agree to follow this project's Code of Conduct + required: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 11fc491e..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -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. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml new file mode 100644 index 00000000..77ab1f45 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -0,0 +1,43 @@ +name: Feature Request +description: Suggest an idea for this project +title: "[Feature Request]: " +labels: ["enhancement"] +projects: ["tattle-made/uli"] +assignees: + - '' +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this feature request report! + - 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: "I'm always frustrated when..." + validations: + required: true + - type: textarea + id: solution + attributes: + label: Describe the solution you'd like + description: A clear and concise description of what you want to happen. + placeholder: "I'd like it if..." + validations: + required: true + - type: textarea + id: alternative + attributes: + label: Describe alternatives you've considered + description: A clear and concise description of any alternative solutions or features you've considered. + placeholder: "I've considered..." + validations: + required: false + - type: image + id: screenshots + attributes: + label: Additional context + description: Add any other context or screenshots about the feature request here. + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/qa_test_checklist.md b/.github/ISSUE_TEMPLATE/qa_test_checklist.md deleted file mode 100644 index 7851ae2d..00000000 --- a/.github/ISSUE_TEMPLATE/qa_test_checklist.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -name: QA Test Checklist -about: Use this as a guide for manual QA -title: "[QA]" -labels: 'qa' -assignees: 'dennyabrain' - ---- - -### Platform -Choose Chrome, Brave or Firefox - -### Features To Check : -- [ ] Users are able to archive a tweet on their device -- [ ] Users are able to send an archived tweet to their email -- [ ] Users are able to hide tweets with OGBV on their feed -- [ ] Users are able to update their Preference -- [ ] Uli is able to hide slurs on user's feed diff --git a/.github/ISSUE_TEMPLATE/qa_test_checklist.yaml b/.github/ISSUE_TEMPLATE/qa_test_checklist.yaml new file mode 100644 index 00000000..d409c721 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/qa_test_checklist.yaml @@ -0,0 +1,33 @@ +name: QA Test Checklist +description: Use this as a guide for manual QA +title: "[QA]: " +labels: ["qa"] +projects: ["tattle-made/uli"] +assignees: + - 'dennyabrain' + +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this QA Test Checklist report! + - type: dropdown + id: browsers + attributes: + label: Browsers + description: Which browsers did you test? + multiple: true + options: + - Chrome + - Brave + - Firefox + - type: checkboxes + id: features + attributes: + description: Features to check + options: + - Users are able to archive a tweet on their device + - Users are able to send an archived tweet to their email + - Users are able to hide tweets with OGBV on their feed + - Users are able to update their Preference + - Uli is able to hide slurs on user's feed \ No newline at end of file