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

XFEstudio/gpt4free

Auto-generate PR description [G4F] (#2336)

* Auto-generate PR description [G4F]

45407d3a
Yuri V <yuri.valigursky@gmail.com>
提交于

代码差异

1 个文件 +24 -0
Added .github/workflows/auto-pr-description.yml +24 -0
@@ -0,0 +1,24 @@
1 name: Auto-generate PR description [G4F]
2
3 on:
4 pull_request:
5 types: [opened, synchronize]
6
7 jobs:
8 generate-pr-description:
9 runs-on: ubuntu-latest
10 permissions:
11 contents: read
12 pull-requests: write
13 issues: write
14
15 steps:
16 - name: Check out repository
17 uses: actions/checkout@v4
18 with:
19 fetch-depth: 0
20
21 - name: Auto-generate PR Description
22 uses: yuri-val/auto-pr-description-g4f-action@v1
23 with:
24 github_token: ${{ secrets.GITHUB_TOKEN }}