You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: recommend reusable workflow for GitHub Actions
Replace inline workflow with Continue's reusable workflow which handles
agent discovery, parallel execution, and check reporting. GH_TOKEN is
now automatically provided for agents using the gh CLI.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
@@ -220,158 +220,57 @@ Before enabling fully automated agents:
220
220
221
221
## GitHub Actions Integration
222
222
223
-
Automate agent execution on pull requests with this workflow.
223
+
Continue provides a [reusable workflow](https://github.com/continuedev/continue/blob/main/.github/workflows/continue-agents.yml) that handles agent discovery, parallel execution, and GitHub Check reporting.
Add these secrets to your repository under **Settings > Secrets and variables > Actions**:
266
+
Add this secret to your repository under **Settings > Secrets and variables > Actions**:
368
267
369
268
| Secret | Description |
370
269
|--------|-------------|
371
270
| `ANTHROPIC_API_KEY` | Your Anthropic API key for Claude |
372
271
373
272
<Info>
374
-
The `GH_TOKEN` is automatically provided by GitHub Actions via `${{ github.token }}`. This token is scoped to the repository and expires after the workflow completes.
273
+
The reusable workflow automatically provides `GH_TOKEN` via `${{ github.token }}`, so agents using the `gh` CLI work out of the box.
0 commit comments