-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4ad03c7
commit a21231f
Showing
168 changed files
with
10,153 additions
and
7,542 deletions.
There are no files selected for viewing
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,3 @@ | ||
# MANIFEST_TYPE values: MV2 or MV3 | ||
MANIFEST_TYPE=MV3 | ||
NODE_ENV=development |
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
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: Move ClickUp Task to CODE REVIEW and Add PR Link as Comment | ||
|
||
on: | ||
pull_request: | ||
types: [opened, closed] | ||
|
||
jobs: | ||
update_task_status: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Extract ClickUp Task ID from PR Title | ||
id: extract_task_id | ||
run: echo "::set-output name=task_id::$(echo ${{ github.event.pull_request.title }} | grep -o '[a-zA-Z0-9]\{9\}')" | ||
|
||
- name: Move Task to CODE REVIEW | ||
if: github.event.action == 'opened' && steps.extract_task_id.outputs.task_id != '' | ||
run: | | ||
curl -X PUT "https://api.clickup.com/api/v2/task/${{ steps.extract_task_id.outputs.task_id }}" \ | ||
-H "Authorization: ${{ secrets.CLICKUP_API_KEY }}" \ | ||
-H "Content-Type: application/json" \ | ||
-d '{"status": "CODE REVIEW"}' | ||
- name: Add PR Link as Comment | ||
if: github.event.action == 'opened' && steps.extract_task_id.outputs.task_id != '' | ||
run: | | ||
curl -X POST "https://api.clickup.com/api/v2/task/${{ steps.extract_task_id.outputs.task_id }}/comment" \ | ||
-H "Authorization: ${{ secrets.CLICKUP_API_KEY }}" \ | ||
-H "Content-Type: application/json" \ | ||
-d '{"comment_text": "PR: ${{ github.event.pull_request.html_url }}", "notify_all": false }' | ||
- name: Move Task to READY FOR PUBLISHING | ||
if: github.event.action == 'closed' && github.event.pull_request.merged == true && steps.extract_task_id.outputs.task_id != '' | ||
run: | | ||
curl -X PUT "https://api.clickup.com/api/v2/task/${{ steps.extract_task_id.outputs.task_id }}" \ | ||
-H "Authorization: ${{ secrets.CLICKUP_API_KEY }}" \ | ||
-H "Content-Type: application/json" \ | ||
-d '{"status": "READY FOR PUBLISHING"}' |
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,62 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- pre-release | ||
- master | ||
- develop | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '18' | ||
|
||
- name: Install dependencies | ||
run: yarn install | ||
|
||
- name: Set TARGET_BROWSER environment variable | ||
run: echo "TARGET_BROWSER=chrome" >> $GITHUB_ENV | ||
|
||
- name: Build project for Chrome | ||
run: yarn run build:chrome | ||
|
||
- name: List files in build directory | ||
run: ls -l ./build | ||
|
||
- name: Set asset name | ||
id: set_asset_name | ||
run: echo "ASSET_NAME=$(ls build | grep 'pali-wallet-chrome' | grep '.zip')" >> $GITHUB_ENV | ||
|
||
- name: Get package version | ||
id: get_version | ||
run: echo "PACKAGE_VERSION=$(cat package.json | jq -r '.version')" >> $GITHUB_ENV | ||
|
||
- name: Create a draft release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
with: | ||
tag_name: v${{ github.event.repository.name }}-${{ github.ref_name }}-release | ||
release_name: Release ${{ github.event.repository.name }} for ${{ github.ref_name }} (v${{ env.PACKAGE_VERSION }}) | ||
draft: true | ||
prerelease: true | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Upload zip to release | ||
uses: actions/upload-release-asset@v1 | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ./build/${{ env.ASSET_NAME }} | ||
asset_name: ${{ env.ASSET_NAME }} | ||
asset_content_type: application/zip | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
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
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
This file was deleted.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
patches/webextension-polyfill-ts++webextension-polyfill+0.7.0.patch
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.