XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 1
返回提交历史

XFEstudio/gpt4free

Update workflow

e13aa2e4
Heiner Lohaus <hlohaus@users.noreply.github.com>
提交于

代码差异

2 个文件 +11 -8
Modified .github/workflows/copilot.yml +3 -7
@@ -6,16 +6,10 @@ on:
6 6 - opened
7 7 - synchronize
8 8
9 env:
10 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
11
12 permissions:
13 contents: read
14 pull-requests: write
15
16 9 jobs:
17 10 review:
18 11 runs-on: ubuntu-latest
12 permissions: write-all
19 13 steps:
20 14 - name: Checkout Repo
21 15 uses: actions/checkout@v3
@@ -30,4 +24,6 @@ jobs:
30 24 - name: Install PyGithub
31 25 run: pip install PyGithub
32 26 - name: AI Code Review
27 env:
28 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33 29 run: python -m etc.tool.copilot
Modified .github/workflows/unittest.yml +8 -1
@@ -1,6 +1,13 @@
1 1 name: Unittest
2 2
3 on: [push]
3 on:
4 pull_request:
5 types:
6 - opened
7 - synchronize
8 push:
9 branches:
10 - 'main'
4 11
5 12 jobs:
6 13 build: