Skip to content

Commit fff335e

Browse files
committed
fix: config for agent api
1 parent 2041336 commit fff335e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/run-continue-agent.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77
description: "The prompt to send to the Continue agent"
88
required: true
99
type: string
10-
agent:
11-
description: "The agent to use (e.g., continuedev/default-background-agent)"
10+
config:
11+
description: "The config to use (e.g., continuedev/default-background-agent)"
1212
required: false
1313
type: string
1414
default: "continuedev/default-background-agent"
@@ -33,7 +33,7 @@ jobs:
3333
-H "Authorization: Bearer ${{ secrets.CONTINUE_API_KEY }}" \
3434
-d '{
3535
"prompt": "${{ inputs.prompt }}",
36-
"agent": "${{ inputs.agent }}",
36+
"config": "${{ inputs.config }}",
3737
"branchName": "${{ inputs.branch_name }}",
3838
"repoUrl": "https://github.com/${{ github.repository }}"
3939
}')

.github/workflows/tidy-up-codebase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: ./.github/workflows/run-continue-agent.yml
1212
with:
1313
prompt: "Review every Markdown documentation file and verify that descriptions, examples, or behavior outlines accurately reflect the current code. Only update documentation; do not modify code. Check the corresponding code to confirm behavior before making changes. Correct any inaccuracies or outdated information in descriptions, examples, or behavior outlines. Preserve existing Markdown formatting, style, and structure. Do not add new sections, speculative explanations, or details not present in the code. Only update statements that are clearly incorrect or misleading; do not rewrite text for style or preference. Keep edits minimal and focused, ensuring that the Markdown matches what the code actually does. If verification against the code is ambiguous, leave the documentation unchanged. Use branch name bot/cleanup-<YYMMDD>-<HHMM>"
14-
agent: continuedev/default-background-agent
14+
config: continuedev/default-background-agent
1515
branch_name: main
1616
secrets:
1717
CONTINUE_API_KEY: ${{ secrets.CONTINUE_API_KEY }}

0 commit comments

Comments
 (0)