-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:tattle-made/Uli into main
- Loading branch information
Showing
46 changed files
with
2,325 additions
and
1,100 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 |
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,65 @@ | ||
name: "Build For PR Review - Both Browsers" | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
actions: write | ||
issues: write | ||
pull-requests: write | ||
contents: write | ||
repository-projects: write | ||
|
||
jobs: | ||
chrome-publish: | ||
name: "Build For PR Review" | ||
runs-on: "ubuntu-latest" | ||
|
||
steps: | ||
- name: "Checkout Development Branch" | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
|
||
- name: Get commit SHA | ||
shell: bash | ||
run: | | ||
echo "setting variables" | ||
echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" | ||
- name: "Build and Test" | ||
run: | | ||
cd browser-extension/plugin | ||
ls | ||
pwd | ||
npm install | ||
npm run build | ||
mv dist/ extension-chrome/ | ||
npm run build:firefox | ||
mv dist/ extension-firefox/ | ||
- name: "Upload dist folder as artifact" | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: extension-artifacts | ||
path: | | ||
browser-extension/plugin/extension-firefox/ | ||
browser-extension/plugin/extension-chrome/ | ||
# - name: Debug GitHub Token Permissions | ||
# run: echo ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# - name: Create PR Comment with Artifact Link | ||
# uses: actions/github-script@v5 | ||
# with: | ||
# github-token: ${{ secrets.GITHUB_TOKEN }} | ||
# script: | | ||
# const artifact_url = `https://github.com/${{github.repository_owner}}/${{github.event.repository.name}}/actions/runs/${{ github.run_id }}`; | ||
# const comment_body = `🛠 Your build files are available [here](${artifact_url}).`; | ||
# await github.rest.issues.createComment({ | ||
# issue_number: context.payload.pull_request.number, | ||
# owner: context.repo.owner, | ||
# repo: context.repo.repo, | ||
# body: comment_body | ||
# }); |
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
Oops, something went wrong.