Add GitHub helper to create issue comments #270
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
name: genai pull request review | |
on: | |
pull_request: | |
types: [opened, ready_for_review, reopened] | |
paths: | |
- yarn.lock | |
- ".github/workflows/ollama.yml" | |
- "packages/core/**/*" | |
- "packages/cli/**/*" | |
- "packages/samples/**/*" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
fetch-depth: 10 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
cache: yarn | |
- run: yarn install --frozen-lockfile | |
- name: compile | |
run: yarn compile | |
- name: start ollama | |
run: docker run -d -v ollama:/root/.ollama -p 11434:11434 --name ollama ollama/ollama | |
- name: git stuff | |
run: git fetch origin && git pull origin main:main | |
- name: genaiscript pr-describe | |
continue-on-error: true | |
run: node packages/cli/built/genaiscript.cjs run pr-describe --out ./temp/genai/pr-describe -prd --out-trace $GITHUB_STEP_SUMMARY --model ollama:qwen2.5-coder:7b | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: genaiscript pr-review | |
run: node packages/cli/built/genaiscript.cjs run pr-review --out ./temp/genai/pr-review -prc --out-trace $GITHUB_STEP_SUMMARY --model ollama:qwen2.5-coder:3b | |
continue-on-error: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_COMMIT_SHA: ${{ github.event.pull_request.base.sha}} | |
- name: Archive genai results | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: genai-results | |
path: ./temp/genai/** |