Skip to content

Commit 3d7aa1b

Browse files
committed
fix: use CONTINUE_APP_ID and CONTINUE_APP_PRIVATE_KEY secrets
- Both app-id and app-private-key are now passed as secrets - Removed default app-id value - Updated test workflow to use proper secret names - Users need to set CONTINUE_APP_ID and CONTINUE_APP_PRIVATE_KEY in their repo secrets
1 parent a2d2539 commit 3d7aa1b

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

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

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,8 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v4
2020

21-
# Example 1: Basic usage (no GitHub App - uses default token)
2221
- uses: continuedev/continue/actions/base-review@bdougie/continue-agent
2322
with:
2423
continue-api-key: ${{ secrets.CONTINUE_API_KEY }}
25-
26-
# Example 2: With GitHub App (if you have your own app)
27-
# - uses: continuedev/continue/actions/base-review@bdougie/continue-agent
28-
# with:
29-
# continue-api-key: ${{ secrets.CONTINUE_API_KEY }}
30-
# app-id: ${{ vars.MY_APP_ID }}
31-
# app-private-key: ${{ secrets.MY_APP_PRIVATE_KEY }}
24+
app-id: ${{ secrets.CONTINUE_APP_ID }}
25+
app-private-key: ${{ secrets.CONTINUE_APP_PRIVATE_KEY }}

actions/base-review/action.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@ inputs:
77
description: "API key for Continue service (required)"
88
required: true
99
app-id:
10-
description: "GitHub App ID (optional, defaults to Continue's app)"
10+
description: "GitHub App ID (optional)"
1111
required: false
12-
default: "1090372" # Continue Agent App ID
1312
app-private-key:
14-
description: "GitHub App Private Key (optional, defaults to Continue's app)"
13+
description: "GitHub App Private Key (optional)"
1514
required: false
1615

1716
runs:

0 commit comments

Comments
 (0)