mirror of
https://github.com/ingress-it-solutions/gitea-code-review-action.git
synced 2025-04-20 03:06:44 +00:00
Fixed issue with Action
This commit is contained in:
parent
ff1d104dca
commit
3fc8120d66
2 changed files with 8 additions and 8 deletions
8
.github/workflows/main.yaml
vendored
8
.github/workflows/main.yaml
vendored
|
@ -10,8 +10,8 @@ jobs:
|
||||||
code-review:
|
code-review:
|
||||||
if: |
|
if: |
|
||||||
github.event_name == 'pull_request' ||
|
github.event_name == 'pull_request' ||
|
||||||
(github.event.comment.user.login == 'adshao' &&
|
(github.event.comment.user.login == 'vandanafuletra' &&
|
||||||
startsWith(github.event.comment.body, 'chatgpt'))
|
startsWith(github.event.comment.body, 'openai'))
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
@ -21,7 +21,7 @@ jobs:
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
PROGRAMMING_LANGUAGE: 'JavaScript'
|
PROGRAMMING_LANGUAGE: 'JavaScript'
|
||||||
REVIEW_COMMENT_PREFIX: 'chatgpt:'
|
REVIEW_COMMENT_PREFIX: 'openai:'
|
||||||
FULL_REVIEW_COMMENT: 'chatgpt'
|
FULL_REVIEW_COMMENT: 'openai'
|
||||||
OPENAI_TOKEN: ${{ secrets.OPENAI_TOKEN }}
|
OPENAI_TOKEN: ${{ secrets.OPENAI_TOKEN }}
|
||||||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
name: Gitea Code Review
|
name: Gitea Code Review
|
||||||
description: A GitHub Action that uses OpenAI ChatGPT to review code in pull request.
|
description: A GitHub Action that uses OpenAI to review code in pull request.
|
||||||
inputs:
|
inputs:
|
||||||
PROGRAMMING_LANGUAGE:
|
PROGRAMMING_LANGUAGE:
|
||||||
description: 'The programming language used in the GitHub repository. If not provided, the detected programming language will be used.'
|
description: 'The programming language used in the GitHub repository. If not provided, the detected programming language will be used.'
|
||||||
default: ''
|
default: ''
|
||||||
FULL_REVIEW_COMMENT:
|
FULL_REVIEW_COMMENT:
|
||||||
description: 'The comment to trigger a code review for the pull request.'
|
description: 'The comment to trigger a code review for the pull request.'
|
||||||
default: 'chatgpt'
|
default: 'openai'
|
||||||
REVIEW_COMMENT_PREFIX:
|
REVIEW_COMMENT_PREFIX:
|
||||||
description: 'The comment prefix to trigger a code review with the comment content.'
|
description: 'The comment prefix to trigger a code review with the comment content.'
|
||||||
default: 'chatgpt:'
|
default: 'openai:'
|
||||||
OPENAI_TOKEN:
|
OPENAI_TOKEN:
|
||||||
description: 'The API token for the OpenAI ChatGPT API.'
|
description: 'The API token for the OpenAI API.'
|
||||||
required: true
|
required: true
|
||||||
GITHUB_TOKEN:
|
GITHUB_TOKEN:
|
||||||
description: 'The API token for the Github API.'
|
description: 'The API token for the Github API.'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue