Skip to content

Test Github Workflows #1

Test Github Workflows

Test Github Workflows #1

Workflow file for this run

name: Code Review
on:
pull_request:
types: [edited]
jobs:
code-review:
runs-on: ubuntu-latest
if: github.event.comment.user.login == 'denysbutenko' && startsWith(github.event.comment.body, 'review')
steps:
- name: OpenAI ChatGPT Code Review
uses: adshao/chatgpt-code-review-action@v0.2
with:
PROGRAMMING_LANGUAGE: 'TypeScript'
OPENAI_TOKEN: ${{ secrets.OPENAI_TOKEN }}
GITHUB_TOKEN: ${{ secrets.CODECOV_TOKEN }}
FULL_REVIEW_COMMENT: 'review'
REVIEW_COMMENT_PREFIX: 'review:'