diff --git a/.github/workflows/cr.yml b/.github/workflows/cr.yml new file mode 100644 index 0000000..c346c6b --- /dev/null +++ b/.github/workflows/cr.yml @@ -0,0 +1,21 @@ +name: Automated Ollama Code Review + +on: + pull_request: + branches: + - main + +jobs: + ollama_review: + runs-on: ubuntu-latest + name: Ollama Code Review Job + steps: + - name: Checkout Repository + uses: actions/checkout@v2 + + - name: Ollama Code Review + uses: ./.github/actions/ollama-code-review + with: + llm-model: 'codegemma' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file