diff options
author | Tekky <98614666+xtekky@users.noreply.github.com> | 2024-01-21 11:42:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-21 11:42:39 +0100 |
commit | 49185f648db056c6adcb36cdd5b68602bb223886 (patch) | |
tree | cf2d64ace8b1a38eb31980554d1820500928d6dc /.github/workflows | |
parent | Update copilot.yml (diff) | |
download | gpt4free-49185f648db056c6adcb36cdd5b68602bb223886.tar gpt4free-49185f648db056c6adcb36cdd5b68602bb223886.tar.gz gpt4free-49185f648db056c6adcb36cdd5b68602bb223886.tar.bz2 gpt4free-49185f648db056c6adcb36cdd5b68602bb223886.tar.lz gpt4free-49185f648db056c6adcb36cdd5b68602bb223886.tar.xz gpt4free-49185f648db056c6adcb36cdd5b68602bb223886.tar.zst gpt4free-49185f648db056c6adcb36cdd5b68602bb223886.zip |
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/copilot.yml | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/.github/workflows/copilot.yml b/.github/workflows/copilot.yml deleted file mode 100644 index 1de81cb6..00000000 --- a/.github/workflows/copilot.yml +++ /dev/null @@ -1,29 +0,0 @@ -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 |