-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into xenova
- Loading branch information
Showing
274 changed files
with
19,908 additions
and
7,749 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,25 @@ | ||
{ | ||
"image": "mcr.microsoft.com/devcontainers/javascript-node:20", | ||
"postCreateCommand": "yarn install --frozen-lockfile --prefer-offline", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"GitHub.copilot-chat", | ||
"esbenp.prettier-vscode", | ||
"dbaeumer.vscode-eslint", | ||
"bierner.markdown-mermaid", | ||
"yoavbls.pretty-ts-errors", | ||
"kejun.markdown-alert", | ||
"astro-build.astro-vscode", | ||
"unifiedjs.vscode-mdx", | ||
"streetsidesoftware.code-spell-checker" | ||
] | ||
} | ||
}, | ||
"features": { | ||
"ghcr.io/devcontainers/features/docker-in-docker:2": {} | ||
} | ||
} | ||
"image": "mcr.microsoft.com/devcontainers/javascript-node:20", | ||
"postCreateCommand": "yarn install --frozen-lockfile --prefer-offline", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"GitHub.copilot-chat", | ||
"esbenp.prettier-vscode", | ||
"dbaeumer.vscode-eslint", | ||
"bierner.markdown-mermaid", | ||
"yoavbls.pretty-ts-errors", | ||
"kejun.markdown-alert", | ||
"astro-build.astro-vscode", | ||
"unifiedjs.vscode-mdx", | ||
"streetsidesoftware.code-spell-checker", | ||
"file-icons.file-icons" | ||
] | ||
} | ||
}, | ||
"features": { | ||
"ghcr.io/devcontainers/features/docker-in-docker:2": {}, | ||
"ghcr.io/devcontainers/features/azure-cli:1.2.5": {}, | ||
"ghcr.io/devcontainers/features/python:1.6.1": {} | ||
} | ||
} |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
name: genai commander | ||
on: | ||
issue_comment: | ||
types: [created] | ||
jobs: | ||
pr_commented: | ||
# must be PR and have a comment starting with /genai | ||
if: ${{ github.event.issue.pull_request && contains(github.event.comment.body, '/genai-') }} | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
steps: | ||
- name: resolve pr sha | ||
id: sha | ||
uses: actions/github-script@v4 | ||
with: | ||
result-encoding: string | ||
script: | | ||
const { owner, repo, number } = context.issue; | ||
const pr = await github.pulls.get({ owner, repo, pull_number: number, }); | ||
console.log(pr) | ||
const res = { sha: pr.data.head.sha, ref: pr.data.head.ref } | ||
console.log(res) | ||
return JSON.stringify(res) | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: diff PR branch | ||
run: git diff origin/main...origin/${{ fromJSON(steps.sha.outputs.result).ref }} | ||
- name: diff PR commit | ||
run: git diff origin/main...${{ fromJSON(steps.sha.outputs.result).sha }} | ||
- name: checkout PR commit | ||
run: git checkout ${{ fromJSON(steps.sha.outputs.result).sha }} | ||
- name: diff main | ||
run: git diff origin/main | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: "20" | ||
cache: yarn | ||
- name: install dependencies | ||
run: yarn install --frozen-lockfile | ||
- name: compile | ||
run: yarn compile | ||
- name: genaiscript pr-describe | ||
if: contains(github.event.comment.body, '/genai-describe') | ||
run: node packages/cli/built/genaiscript.cjs run pr-describe --out ./temp/genai/pr-describe -prd --out-trace $GITHUB_STEP_SUMMARY | ||
env: | ||
GITHUB_ISSUE: ${{ github.event.issue.number }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | ||
OPENAI_API_TYPE: ${{ secrets.OPENAI_API_TYPE }} | ||
OPENAI_API_BASE: ${{ secrets.OPENAI_API_BASE }} | ||
- name: genaiscript pr-review | ||
if: contains(github.event.comment.body, '/genai-review') | ||
run: node packages/cli/built/genaiscript.cjs run pr-review --out ./temp/genai/pr-review -prc --out-trace $GITHUB_STEP_SUMMARY | ||
env: | ||
GITHUB_ISSUE: ${{ github.event.issue.number }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_COMMIT_SHA: ${{ fromJSON(steps.sha.outputs.result).sha }} | ||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | ||
OPENAI_API_TYPE: ${{ secrets.OPENAI_API_TYPE }} | ||
OPENAI_API_BASE: ${{ secrets.OPENAI_API_BASE }} | ||
- name: start ollama | ||
if: contains(github.event.comment.body, '/genai-test') | ||
run: docker run -d -v ollama:/root/.ollama -p 11434:11434 --name ollama ollama/ollama | ||
- name: run test within scripts | ||
if: contains(github.event.comment.body, '/genai-test') | ||
run: yarn test:scripts --out-summary $GITHUB_STEP_SUMMARY --test-delay 10 | ||
- name: Archive genai results | ||
if: always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: genai-results | ||
path: ./temp/genai/** |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: genai pull request docs commit review | ||
on: | ||
pull_request: | ||
paths: | ||
- docs/**/*.md | ||
- docs/**/*.mdx | ||
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: 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 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_COMMIT_SHA: ${{ github.event.pull_request.head.sha}} | ||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | ||
OPENAI_API_TYPE: ${{ secrets.OPENAI_API_TYPE }} | ||
OPENAI_API_BASE: ${{ secrets.OPENAI_API_BASE }} | ||
- name: Archive genai results | ||
if: always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: genai-results | ||
path: ./temp/genai/** |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
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: git stuff | ||
run: git fetch origin && git pull origin main:main | ||
- name: genaiscript pr-describe | ||
run: node packages/cli/built/genaiscript.cjs run pr-describe --out ./temp/genai/pr-describe -prd --out-trace $GITHUB_STEP_SUMMARY | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | ||
OPENAI_API_TYPE: ${{ secrets.OPENAI_API_TYPE }} | ||
OPENAI_API_BASE: ${{ secrets.OPENAI_API_BASE }} | ||
- 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 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_COMMIT_SHA: ${{ github.event.pull_request.base.sha}} | ||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | ||
OPENAI_API_TYPE: ${{ secrets.OPENAI_API_TYPE }} | ||
OPENAI_API_BASE: ${{ secrets.OPENAI_API_BASE }} | ||
- name: Archive genai results | ||
if: always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: genai-results | ||
path: ./temp/genai/** |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: refresh 3rd party licenses | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [main] | ||
paths: | ||
- "yarn.lock" | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
actions: read | ||
contents: write | ||
pull-requests: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: "recursive" | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: "20" | ||
cache: yarn | ||
- run: yarn install --frozen-lockfile | ||
- run: yarn gen:licenses | ||
- uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
file_pattern: "THIRD_PARTY_LICENSES.md" | ||
commit_message: "3rd party license update" | ||
commit_user_name: "genaiscript" |
Oops, something went wrong.