Skip to content

Commit c47c3bc

Browse files
committed
📦 chore(gpt-commit-summarizer.yml): add GitHub Actions workflow for GPT Commits summarizer
1 parent ffd4bae commit c47c3bc

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: GPT Commits summarizer
2+
# Summary: This action will write a comment about every commit in a pull request, as well as generate a summary for every file that was modified and add it to the review page, compile a PR summary from all commit summaries and file diff summaries, and delete outdated code review comments
3+
4+
on:
5+
pull_request:
6+
types: [opened, synchronize]
7+
8+
jobs:
9+
summarize:
10+
runs-on: ubuntu-latest
11+
permissions: write-all # Some repositories need this line
12+
13+
steps:
14+
- uses: KanHarI/gpt-commit-summarizer@master
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

0 commit comments

Comments
 (0)