From ff55e3f1be69faae3adb2c1ca64b1258274fe713 Mon Sep 17 00:00:00 2001 From: Syeda Zainab <83520846+srzainab@users.noreply.github.com> Date: Thu, 7 Nov 2024 13:24:01 +1100 Subject: [PATCH 1/7] added a fix for readable stream --- .github/workflows/publish.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3ae626b..6b2a665 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -22,6 +22,9 @@ jobs: envkey_PULLFLOW_APP_URL: https://app.pullflow.com envkey_PULLFLOW_TELEMETRY_URL: https://collector.pullflow.cloud + - name: Install polyfill for ReadableStream + run: npm install readable-stream + - name: Build, compile and test run: | yarn From 368801c56d713e7b938474b5452f89b92f711f1f Mon Sep 17 00:00:00 2001 From: Syeda Zainab <83520846+srzainab@users.noreply.github.com> Date: Thu, 7 Nov 2024 13:25:08 +1100 Subject: [PATCH 2/7] add branch temporary to test endpoint --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6b2a665..ea4c94b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,7 +1,7 @@ name: Publish to VS Code Marketplace on: push: - branches: [main] + branches: [main, fix/readable-stream-error] jobs: build: runs-on: ubuntu-latest From 0cfd684247401d4d68d72ae72a9e8d497e051429 Mon Sep 17 00:00:00 2001 From: Syeda Zainab <83520846+srzainab@users.noreply.github.com> Date: Thu, 7 Nov 2024 15:16:20 +1100 Subject: [PATCH 3/7] updated version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 265d2c6..c8638f0 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "publisher": "Pullflow", "displayName": "Pullflow", "description": "Code review collaboration across GitHub, Slack, and VS Code.", - "version": "3.0.0", + "version": "6.0.1", "preview": true, "license": "MIT", "engines": { From f1f80075ff70173740cdafb9ec6db8c9c22f315a Mon Sep 17 00:00:00 2001 From: Syeda Zainab <83520846+srzainab@users.noreply.github.com> Date: Thu, 7 Nov 2024 15:16:44 +1100 Subject: [PATCH 4/7] remove the publish command for testing --- .github/workflows/publish.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ea4c94b..9507f5c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -35,4 +35,3 @@ jobs: - name: publish run: | yarn global add vsce - vsce publish -p ${{ secrets.VSCE_ACCESS_TOKEN_TEMPORARY }} From 8f641bdcee4f9c469aedd696d7c9035487420d3d Mon Sep 17 00:00:00 2001 From: Syeda Zainab <83520846+srzainab@users.noreply.github.com> Date: Thu, 7 Nov 2024 15:19:06 +1100 Subject: [PATCH 5/7] add publish back --- .github/workflows/publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9507f5c..ea4c94b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -35,3 +35,4 @@ jobs: - name: publish run: | yarn global add vsce + vsce publish -p ${{ secrets.VSCE_ACCESS_TOKEN_TEMPORARY }} From 5fde0ee0ab8367bf37357498687064a7ae42c548 Mon Sep 17 00:00:00 2001 From: Syeda Zainab <83520846+srzainab@users.noreply.github.com> Date: Thu, 7 Nov 2024 15:22:26 +1100 Subject: [PATCH 6/7] update node version --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ea4c94b..b81c54a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ jobs: - name: Setup Node version uses: actions/setup-node@v1 with: - node-version: 16 + node-version: 18 - uses: actions/checkout@v2 From c7d68ea5c74d3e1554d8d225c006a08207bd0a88 Mon Sep 17 00:00:00 2001 From: Syeda Zainab <83520846+srzainab@users.noreply.github.com> Date: Thu, 7 Nov 2024 15:25:35 +1100 Subject: [PATCH 7/7] fixed naming conventions and removed test code --- .github/workflows/publish.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b81c54a..3c541f0 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,7 +1,7 @@ name: Publish to VS Code Marketplace on: push: - branches: [main, fix/readable-stream-error] + branches: [main] jobs: build: runs-on: ubuntu-latest @@ -22,9 +22,6 @@ jobs: envkey_PULLFLOW_APP_URL: https://app.pullflow.com envkey_PULLFLOW_TELEMETRY_URL: https://collector.pullflow.cloud - - name: Install polyfill for ReadableStream - run: npm install readable-stream - - name: Build, compile and test run: | yarn @@ -35,4 +32,4 @@ jobs: - name: publish run: | yarn global add vsce - vsce publish -p ${{ secrets.VSCE_ACCESS_TOKEN_TEMPORARY }} + vsce publish -p ${{ secrets.VSCE_ACCESS_TOKEN }}