-
Notifications
You must be signed in to change notification settings - Fork 3.7k
fix: improve image URL parsing robustness across providers #8015
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
f18b0a7
3436b3e
2baf4d5
fb90ae7
da05fbe
0fa9dd9
eac212e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -3,7 +3,7 @@ name: Continue General Review | |||||
| on: | ||||||
| push: | ||||||
| branches: | ||||||
| - main | ||||||
| - nate/fix-wf | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Limiting the push trigger to the personal Prompt for AI agents
Suggested change
|
||||||
| pull_request: | ||||||
| types: [opened, ready_for_review] | ||||||
| issue_comment: | ||||||
|
|
@@ -25,4 +25,4 @@ jobs: | |||||
| with: | ||||||
| continue-api-key: ${{ secrets.CONTINUE_API_KEY }} | ||||||
| continue-org: "continuedev" | ||||||
| continue-agent: "empty-agent" | ||||||
| continue-config: "continuedev/review-bot" | ||||||
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -3,6 +3,8 @@ | |||||
| "system_setup_commands": [ | ||||||
| "npm i -g @continuedev/cli@latest", | ||||||
| "sudo apt update", | ||||||
| "sudo apt install -y ripgrep" | ||||||
| "sudo apt install -y ripgrep", | ||||||
| "sudo apt install asciinema", | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add the Prompt for AI agents
Suggested change
|
||||||
| "sudo apt install expect" | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Include the Prompt for AI agents
Suggested change
|
||||||
| ] | ||||||
| } | ||||||
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With this change the include-root path now only restores the cache, but never runs npm ci on a cache miss. On a fresh runner node_modules stays empty, so any workflow that sets include-root=true and expects root packages will fail.
Prompt for AI agents