blob: 8b21ccfda5ff52ec980c876fc5bac3316f92a422 (
plain) (
tree)
|
|
name: AI Code Reviewer
on:
workflow_run:
workflows: ["build"]
types:
- completed
jobs:
review:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
cache: 'pip'
- name: Install Requirements
run: pip install -r requirements.txt
- name: Install PyGithub
run: pip install PyGithub
- name: AI Code Review
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: python -m etc.tool.copilot
|