From ef7194237b55ee32950b86981805099358572f9b Mon Sep 17 00:00:00 2001 From: Tekky <98614666+xtekky@users.noreply.github.com> Date: Sun, 21 Jan 2024 10:42:53 +0000 Subject: Create copilot.yml --- .github/workflows/copilot.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/copilot.yml diff --git a/.github/workflows/copilot.yml b/.github/workflows/copilot.yml new file mode 100644 index 00000000..1de81cb6 --- /dev/null +++ b/.github/workflows/copilot.yml @@ -0,0 +1,29 @@ +name: AI Code Reviewer + +on: + pull_request: + types: + - opened + - synchronize + +jobs: + review: + runs-on: ubuntu-latest + permissions: write-all + 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.COPILOT_TOKEN }} + run: python -m etc.tool.copilot -- cgit v1.2.3