genai investigator #1446
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 investigator | |
on: | |
workflow_run: | |
workflows: ["build", "playwright", "ollama"] | |
types: | |
- completed | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.workflow_run.event }}-${{ github.event.workflow_run.conclusion }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
actions: read | |
pull-requests: write | |
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: | |
investigate: | |
# Only run this job if the workflow run concluded with a failure | |
# and was triggered by a pull request event | |
if: ${{ github.event.workflow_run.conclusion == 'failure' && github.event.workflow_run.event == 'pull_request' }} | |
runs-on: ubuntu-latest | |
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 | |
# | |
# Start Ollama in a docker container | |
# | |
- name: start ollama | |
run: docker run -d -v ollama:/root/.ollama -p 11434:11434 --name ollama ollama/ollama | |
- name: genaiscript gai | |
run: node packages/cli/built/genaiscript.cjs run gai -pr ${{ github.event.workflow_run.pull_requests[0].number }} -prc --vars "workflow=${{ github.event.workflow_run.workflow_id }}" --vars "failure_run_id=${{ github.event.workflow_run.id }}" --out-trace $GITHUB_STEP_SUMMARY | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GENAISCRIPT_VAR_BRANCH: ${{ github.event.workflow_run.head_branch }} | |
- name: genaiscript github-agent | |
run: node packages/cli/built/genaiscript.cjs run github-agent -pr ${{ github.event.workflow_run.pull_requests[0].number }} -prc --vars "workflow=${{ github.event.workflow_run.workflow_id }}" --vars "failure_run_id=${{ github.event.workflow_run.id }}" --out-trace $GITHUB_STEP_SUMMARY | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GENAISCRIPT_VAR_BRANCH: ${{ github.event.workflow_run.head_branch }} | |
- name: genaiscript github-one | |
run: node packages/cli/built/genaiscript.cjs run github-one -pr ${{ github.event.workflow_run.pull_requests[0].number }} -prc --vars "workflow=${{ github.event.workflow_run.workflow_id }}" --vars "failure_run_id=${{ github.event.workflow_run.id }}" --out-trace $GITHUB_STEP_SUMMARY | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GENAISCRIPT_VAR_BRANCH: ${{ github.event.workflow_run.head_branch }} |