Update plugin com.gradle.enterprise to v3.14.1 #74
Workflow file for this run
This file contains 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
# This workflow triggers a code review using the OpenAI GPT-3.5 Turbo model with a 16k context window | |
name: Code Review | |
on: | |
pull_request: | |
types: | |
- opened | |
jobs: | |
code-review: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
if: ${{ github.actor != 'slack-oss-bot' }} | |
steps: | |
- name: Trigger code review | |
uses: fxchen/[email protected] | |
with: | |
model: 'gpt-3.5-turbo-16k' | |
openai-key: ${{ secrets.OPENAI_API_KEY }} |