2024-01-21 13:42:53 +03:00
|
|
|
name: AI Code Reviewer
|
|
|
|
|
|
|
|
on:
|
2024-01-21 18:42:55 +03:00
|
|
|
workflow_run:
|
2024-01-21 18:57:26 +03:00
|
|
|
workflows: ["Unittest"]
|
2024-01-21 13:42:53 +03:00
|
|
|
types:
|
2024-01-21 18:42:55 +03:00
|
|
|
- completed
|
2024-01-21 13:42:53 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
review:
|
|
|
|
runs-on: ubuntu-latest
|
2024-01-21 18:42:55 +03:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pull-requests: write
|
2024-01-21 13:42:53 +03:00
|
|
|
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:
|
2024-01-21 18:42:55 +03:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2024-01-21 18:59:34 +03:00
|
|
|
run: env
|