Skip to content

Commit 4d63dfd

Browse files
author
esblinov
committed
Add automated Ollama code review workflow
1 parent b2489df commit 4d63dfd

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/code_review.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Automated Ollama Code Review
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
8+
jobs:
9+
ollama_review:
10+
runs-on: ubuntu-latest
11+
name: Ollama Code Review Job
12+
steps:
13+
- name: Checkout Repository
14+
uses: actions/checkout@v2
15+
16+
- name: Ollama Code Review
17+
uses: ./.github/actions/ollama-code-review
18+
with:
19+
llm-model: "codegemma"
20+
env:
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)