data queries #872
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 docs commit review | |
on: | |
pull_request: | |
paths: | |
- docs/**/*.md | |
- docs/**/*.mdx | |
env: | |
# Configure default GenAIScript models | |
# using Ollama's models | |
GENAISCRIPT_DEFAULT_MODEL: ollama:qwen2.5-coder:7b | |
GENAISCRIPT_DEFAULT_SMALL_MODEL: ollama:qwen2.5-coder:1.5b | |
GENAISCRIPT_DEFAULT_VISION_MODEL: ollama:llama3.2-vision:11b | |
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: yarn ollama:start | |
- name: git stuff | |
run: git fetch origin && git pull origin main:main | |
- name: genaiscript pr-review-commit | |
run: node packages/cli/built/genaiscript.cjs run pr-docs-review-commit --out ./temp/genai/pr-docs-review-commit -prr --out-trace $GITHUB_STEP_SUMMARY | |
continue-on-error: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_COMMIT_SHA: ${{ github.event.pull_request.head.sha}} | |
- name: Archive genai results | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: genai-results | |
path: ./temp/genai/** |