2024-01-21 10:42:53 +00:00
|
|
|
name: AI Code Reviewer
|
|
|
|
|
|
|
|
on:
|
2024-01-21 15:42:55 +00:00
|
|
|
workflow_run:
|
2024-01-21 15:57:26 +00:00
|
|
|
workflows: ["Unittest"]
|
2024-01-21 10:42:53 +00:00
|
|
|
types:
|
2024-01-21 15:42:55 +00:00
|
|
|
- completed
|
2024-01-21 10:42:53 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
review:
|
|
|
|
runs-on: ubuntu-latest
|
2024-01-21 15:42:55 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pull-requests: write
|
2024-01-21 10:42:53 +00:00
|
|
|
steps:
|
2024-01-21 16:31:57 +00:00
|
|
|
- name: Checkout Repo
|
|
|
|
uses: actions/checkout@v3
|
2024-01-21 16:26:26 +00:00
|
|
|
- name: 'Download artifact'
|
|
|
|
uses: actions/github-script@v6
|
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
run_id: context.payload.workflow_run.id,
|
|
|
|
});
|
|
|
|
let matchArtifact = allArtifacts.data.artifacts.filter((artifact) => {
|
|
|
|
return artifact.name == "pr_number"
|
|
|
|
})[0];
|
|
|
|
let download = await github.rest.actions.downloadArtifact({
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
artifact_id: matchArtifact.id,
|
|
|
|
archive_format: 'zip',
|
|
|
|
});
|
|
|
|
let fs = require('fs');
|
|
|
|
fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/pr_number.zip`, Buffer.from(download.data));
|
|
|
|
- name: 'Unzip artifact'
|
|
|
|
run: unzip pr_number.zip
|
2024-01-21 10:42:53 +00:00
|
|
|
- name: Setup Python
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: "3.x"
|
|
|
|
cache: 'pip'
|
|
|
|
- name: Install Requirements
|
2024-01-21 16:26:26 +00:00
|
|
|
run: |
|
|
|
|
pip install -r requirements.txt
|
|
|
|
pip install PyGithub
|
2024-01-21 10:42:53 +00:00
|
|
|
- name: AI Code Review
|
|
|
|
env:
|
2024-01-21 15:42:55 +00:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2024-01-21 16:26:26 +00:00
|
|
|
GITHUB_REPOSITORY: ${{ github.repository }}
|
2024-01-21 16:01:26 +00:00
|
|
|
run: python -m etc.tool.copilot
|