Feat/prompt 2 #125
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GPT Commits summarizer | |
# Summary: This action will write a comment about every commit in a pull request, containing major points | |
# Add a comment | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
summarize: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
with: | |
# The model to use. | |
openai_model: "gpt-3.5-turbo-16k" | |
# Files you want to ignore. | |
ignore_files: "lib/index.js,*.lock" |