Fix syntax error in Ex0101.java #1
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: Junie Code Review | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| jobs: | |
| review: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| issues: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - uses: JetBrains/junie-github-action@v0 | |
| with: | |
| junie_api_key: ${{ secrets.JUNIE_API_KEY }} | |
| # Update the same comment on subsequent Junie runs instead of adding new comments | |
| use_single_comment: true | |
| # Alternatively, write your custom review instructions in the prompt field | |
| # instead of using the built-in "code-review" value | |
| prompt: "code-review" |