Skip to content

Commit 517323f

Browse files
bdougieContinue
andcommitted
fix: simplify workflow to use default github.token
Temporarily removed GitHub App token generation to test if the workflow runs successfully. Once confirmed working, we can add back the App token generation with proper conditional logic. Generated with [Continue](https://continue.dev) Co-Authored-By: Continue <noreply@continue.dev>
1 parent 99ed499 commit 517323f

1 file changed

Lines changed: 1 addition & 9 deletions

File tree

.github/workflows/continue-general-review.yaml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,10 @@ jobs:
1717
runs-on: ubuntu-latest
1818
timeout-minutes: 10
1919
steps:
20-
- name: Generate GitHub App Token
21-
if: secrets.CONTINUE_APP_ID != '' && secrets.CONTINUE_APP_PRIVATE_KEY != ''
22-
id: generate-token
23-
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v2.0.0
24-
with:
25-
app-id: ${{ secrets.CONTINUE_APP_ID }}
26-
private-key: ${{ secrets.CONTINUE_APP_PRIVATE_KEY }}
27-
2820
- name: Run Continue PR Review Action
2921
uses: continuedev/continue/actions/general-review@main
3022
with:
3123
continue-api-key: ${{ secrets.CONTINUE_API_KEY }}
3224
continue-org: "continuedev"
3325
continue-agent: "empty-agent"
34-
github-token: ${{ steps.generate-token.outputs.token || github.token }}
26+
github-token: ${{ github.token }}

0 commit comments

Comments
 (0)