diff options
author | Yuri V <yuri.valigursky@gmail.com> | 2024-11-17 19:22:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-17 19:22:11 +0100 |
commit | 45407d3aa94d70c4fbca7064b59f0a75d7039c0a (patch) | |
tree | 18f09aa0112b5f0fbed908a0503ad155158a4210 | |
parent | Merge pull request #2364 from kqlio67/main (diff) | |
download | gpt4free-45407d3aa94d70c4fbca7064b59f0a75d7039c0a.tar gpt4free-45407d3aa94d70c4fbca7064b59f0a75d7039c0a.tar.gz gpt4free-45407d3aa94d70c4fbca7064b59f0a75d7039c0a.tar.bz2 gpt4free-45407d3aa94d70c4fbca7064b59f0a75d7039c0a.tar.lz gpt4free-45407d3aa94d70c4fbca7064b59f0a75d7039c0a.tar.xz gpt4free-45407d3aa94d70c4fbca7064b59f0a75d7039c0a.tar.zst gpt4free-45407d3aa94d70c4fbca7064b59f0a75d7039c0a.zip |
-rw-r--r-- | .github/workflows/auto-pr-description.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/auto-pr-description.yml b/.github/workflows/auto-pr-description.yml new file mode 100644 index 00000000..5cead5b9 --- /dev/null +++ b/.github/workflows/auto-pr-description.yml @@ -0,0 +1,24 @@ +name: Auto-generate PR description [G4F] + +on: + pull_request: + types: [opened, synchronize] + +jobs: + generate-pr-description: + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + issues: write + + steps: + - name: Check out repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Auto-generate PR Description + uses: yuri-val/auto-pr-description-g4f-action@v1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file |