Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/gpt-commit-summarizer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: GPT Commits summarizer

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GPT summary of None - 9e155e:

  • Creates an action to write a comment about every commit in a pull request
  • Generates a summary for every file that was modified and adds it to the review page
  • Compiles a PR summary from all commit summaries and file diff summaries
  • Deletes outdated code review comments

# 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

on:
pull_request:
types: [opened, synchronize]

jobs:
summarize:
runs-on: ubuntu-latest
permissions: write-all # Some repositories need this line

steps:
- uses: KanHarI/gpt-commit-summarizer@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}