Minor updates

This commit is contained in:
a8trejo 2024-12-09 09:22:23 -08:00
parent 4ebd3314e4
commit 1cdf981c1a
4 changed files with 10 additions and 33 deletions

View file

@ -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

4
.gitignore vendored
View file

@ -6,4 +6,6 @@ node_modules
.DS_Store
# Builds
bin
bin
prompts

View file

@ -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'

View file

@ -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.