feat(actions): add GitHub App authentication support for review actions #18
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: AI Code Review | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, ready_for_review] | |
| issue_comment: | |
| types: [created] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| issues: write | |
| actions: read | |
| checks: write | |
| jobs: | |
| review: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # This will use GitHub App token if available, otherwise falls back to github.token | |
| - uses: continuedev/continue/actions/base-review@bdougie/continue-agent | |
| with: | |
| continue-api-key: ${{ secrets.CONTINUE_API_KEY }} | |
| # Optional: Provide these if you have a GitHub App installed | |
| # app-id: ${{ secrets.CONTINUE_APP_ID }} | |
| # app-private-key: ${{ secrets.CONTINUE_APP_PRIVATE_KEY }} |