Skip to content

Commit ff33548

Browse files
committed
merge: main
2 parents 7a5731e + 5e55f59 commit ff33548

File tree

468 files changed

+81788
-9161
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

468 files changed

+81788
-9161
lines changed

.continue/prompts/core-unit-test.prompt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ IMPORTANT: Do NOT mock the fixtures above other than using `jest.spyOn`. DO mock
3535
Instead, generate actual mock files and data for operations
3636
Pure mocks should only be used to emulate specific network responses/error or hard-to-duplicate errors, or to prevent long-duration tests
3737

38-
Additional types can be imported from @core/index.d.ts
39-
If any needed types, functions, constants, or classes are still not found, warn the user and do not generate tests.
38+
Additional types can be imported from @core/index.d.ts. If any needed types, functions, constants, or classes are still not found, warn the user and do not generate tests.
4039

41-
Write the comment "// Generated by continue" at the top of the generated code/file (not the filepath)
40+
Write the comment "// Generated by continue" at the top of the generated code/file (not the filepath)
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
name: Sub Agent Background Prompt
3+
description: Start a subagent using the continue cli in the background
4+
invokable: true
5+
---
6+
7+
# Continue Sub Agent Background Prompt
8+
9+
Take the prompt provided by the user and using the terminal tool run the following command in the background:
10+
11+
cn -p "{{prompt}}"
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
name: Sub Agent Foreground Prompt
3+
description: Start a subagent using the continue cli in the foreground
4+
invokable: true
5+
---
6+
7+
# Continue Sub Agent Foreground Prompt
8+
9+
Take the prompt provided by the user and using the terminal tool run the following command in the foreground:
10+
11+
cn -p "{{prompt}}"

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ body:
1313
options:
1414
- label: I've tried using the "Ask AI" feature on the [Continue docs site](https://docs.continue.dev/) to see if the docs have an answer
1515
required: false
16-
- label: I believe this is a bug. I'll try to join the [Continue Discord](https://discord.gg/NWtdYexhMs) for questions
16+
- label: I'm not able to find a related conversation on [GitHub discussions](https://github.com/continuedev/continue/discussions) that reports the same bug
1717
required: false
1818
- label: I'm not able to find an [open issue](https://github.com/continuedev/continue/issues?q=is%3Aopen+is%3Aissue) that reports the same bug
1919
required: false

.github/actions/setup-component/action.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,18 @@ runs:
3131
packages/*/node_modules
3232
key: ${{ runner.os }}-packages-node-modules-${{ hashFiles('packages/*/package-lock.json') }}
3333

34-
- uses: actions/cache@v4
34+
- uses: actions/cache@v4
3535
if: inputs.include-root == 'true'
36+
id: root-cache
3637
with:
3738
path: node_modules
3839
key: ${{ runner.os }}-root-node-modules-${{ hashFiles('package-lock.json') }}
3940

41+
- name: Install root dependencies
42+
if: inputs.include-root == 'true' && steps.root-cache.outputs.cache-hit != 'true'
43+
shell: bash
44+
run: npm ci
45+
4046
- uses: actions/cache@v4
4147
id: component-cache
4248
with:

.github/workflows/auto-fix-failed-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
9090
- name: Checkout repository
9191
if: steps.workflow-details.outputs.has_failed_tests == 'true'
92-
uses: actions/checkout@v5
92+
uses: actions/checkout@v6
9393
with:
9494
token: ${{ secrets.GITHUB_TOKEN }}
9595
fetch-depth: 0

.github/workflows/auto-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
contents: write # Needed for creating releases
1717

1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020

2121
- name: Get version from package.json
2222
id: get_version
@@ -45,7 +45,7 @@ jobs:
4545
contents: write # Needed for creating releases
4646

4747
steps:
48-
- uses: actions/checkout@v5
48+
- uses: actions/checkout@v6
4949
with:
5050
fetch-depth: 0
5151

.github/workflows/beta-release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ jobs:
1616
beta-release:
1717
name: Beta Release
1818
runs-on: ubuntu-latest
19+
# Only run this workflow on the main repository (continuedev/continue)
20+
if: github.repository == 'continuedev/continue'
1921
steps:
2022
- name: Checkout
21-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2224
with:
2325
fetch-depth: 0
2426
token: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}

.github/workflows/cla.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ jobs:
2727
path-to-document: "https://github.com/continuedev/continue/blob/main/CLA.md"
2828
branch: cla-signatures
2929
# Bots and CLAs signed outside of GitHub
30-
allowlist: dependabot[bot],fbricon,panyamkeerthana,Jazzcort,owtaylor,halfline,[email protected],[email protected]
30+
allowlist: dependabot[bot],fbricon,panyamkeerthana,Jazzcort,owtaylor,halfline,[email protected],[email protected],snyk-bot,[email protected]
3131
signed-commit-message: "CLA signed in $pullRequestNo"

.github/workflows/cli-pr-checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
runs-on: ubuntu-latest
1515
if: github.run_attempt > 1
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- name: Track workflow rerun
1919
uses: ./.github/actions/track-rerun
2020

2121
lint:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout code
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626

2727
- name: Setup Node.js
2828
uses: actions/setup-node@v6
@@ -64,7 +64,7 @@ jobs:
6464

6565
steps:
6666
- name: Checkout code
67-
uses: actions/checkout@v5
67+
uses: actions/checkout@v6
6868

6969
- name: Setup Node.js ${{ matrix.node-version }}
7070
uses: actions/setup-node@v6

0 commit comments

Comments
 (0)