diff --git a/.github/workflows/copilot.yml b/.github/workflows/copilot.yml index 1de81cb6..8b21ccfd 100644 --- a/.github/workflows/copilot.yml +++ b/.github/workflows/copilot.yml @@ -1,15 +1,17 @@ name: AI Code Reviewer on: - pull_request: + workflow_run: + workflows: ["build"] types: - - opened - - synchronize + - completed jobs: review: runs-on: ubuntu-latest - permissions: write-all + permissions: + contents: read + pull-requests: write steps: - name: Checkout Repo uses: actions/checkout@v3 @@ -25,5 +27,5 @@ jobs: run: pip install PyGithub - name: AI Code Review env: - GITHUB_TOKEN: ${{ secrets.COPILOT_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: python -m etc.tool.copilot