Add channels and messaging provider pages #34
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: Proofread PRs | |
on: [pull_request] | |
jobs: | |
proofread: | |
permissions: write-all | |
runs-on: ubuntu-latest | |
name: Proofread PRs | |
steps: | |
- name: Proofread PR | |
uses: snopoke/proof-reader-ai@configure-action | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Required to write a PR review | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
OPENAI_API_MODEL: 'gpt-4o-mini' | |
file-pattern: '\.md$' | |
prompt-prefix: 'Your task is to review pull requests for the documentation of Open Chat Studio.' |