diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b7c03e1d00..451db0d211 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,9 +2,8 @@ name: Release run-name: Release ${{ github.event_name == 'push' && '- Create Changeset PR' || '- Approve & Merge Changeset PR' }} on: - push: - branches: - - main + pull_request: + types: [closed] pull_request_target: concurrency: ${{ github.workflow }}-${{ github.ref }} @@ -15,7 +14,10 @@ env: jobs: release: name: Release - if: ${{ github.event_name == 'push' && github.actor != 'R00-B0T'}} + if: > + github.event_name == 'pull_request' && + github.event.pull_request.merged == true && + github.event.pull_request.base.ref == 'main' runs-on: ubuntu-latest permissions: contents: write @@ -29,18 +31,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: 20 - - id: install-aws-cli - uses: unfor19/install-aws-cli-action@v1 - with: - version: 2 - verbose: false - arch: amd64 - - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v4 - with: - aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} - aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - aws-region: ${{ env.AWS_REGION }} + - name: NPM Install run: | npm run install:all diff --git a/.gitignore b/.gitignore index cf34c53d64..c4dcef1943 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,6 @@ node_modules .DS_Store # Builds -bin \ No newline at end of file +bin + +prompts \ No newline at end of file diff --git a/docs/cline-updates.md b/docs/cline-updates.md deleted file mode 100644 index caccf6c497..0000000000 --- a/docs/cline-updates.md +++ /dev/null @@ -1,12 +0,0 @@ -Remember to rebuild the extension and install it using the cli specified on the `Roo-Cline/README.md` file, also remember to change directory to the `Roo-Cline` folder before running the commands from the readme. - -Consider that any `export` or `install` command has already been run, so exclude those.ˆ - -Before editing the file 'Roo-Cline/src/core/Cline.ts', since it's a really large file, read the original file to understand its full content. -Then create a new file with the -updates suffix containing ONLY the changes you've made to the original file. - - -In interactive mode, browser actions are disabled (if (!this.isInteractive) check in doAction method) -The navigateToUrl method uses doAction, which means navigation won't work in interactive mode - -Can we analyze 'Roo-Cline/src/core/Cline.ts' to see how it handles browser actions and if there's some logic preventing it from using 'doAction' \ No newline at end of file diff --git a/docs/cypress-cloud.md b/docs/cypress-cloud.md deleted file mode 100644 index 64465000b3..0000000000 --- a/docs/cypress-cloud.md +++ /dev/null @@ -1,4 +0,0 @@ -Could you navigate to this URL in interactive mode (browserPort = 7333) -https://cloud.cypress.io/projects/hkawvm/runs/22055/overview/b890f243-ce56-4047-9252-c99469dfbbea?roarHideRunsWithDiffGroupsAndTags=1&interactive=true - -Please analyze the failure and let me know if you can fix it. \ No newline at end of file