Skip to content

Commit 9f53c16

Browse files
bdougieContinue
andcommitted
fix: use CONTINUE_ prefix for App credentials in debug workflow
Changed from vars.APP_ID and secrets.APP_PRIVATE_KEY to secrets.CONTINUE_APP_ID and secrets.CONTINUE_APP_PRIVATE_KEY to match the naming convention used in continue-general-review.yaml Generated with [Continue](https://continue.dev) Co-Authored-By: Continue <[email protected]>
1 parent 41c4185 commit 9f53c16

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/code-review-debug.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626

2727
- name: Generate App Token (Optional)
2828
id: generate_token
29-
if: ${{ vars.APP_ID != '' && secrets.APP_PRIVATE_KEY != '' }}
29+
if: ${{ secrets.CONTINUE_APP_ID != '' && secrets.CONTINUE_APP_PRIVATE_KEY != '' }}
3030
uses: actions/create-github-app-token@v1
3131
with:
32-
app-id: ${{ vars.APP_ID }}
33-
private-key: ${{ secrets.APP_PRIVATE_KEY }}
32+
app-id: ${{ secrets.CONTINUE_APP_ID }}
33+
private-key: ${{ secrets.CONTINUE_APP_PRIVATE_KEY }}
3434

3535
- name: Setup Node.js
3636
uses: actions/setup-node@v4

0 commit comments

Comments
 (0)