This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
11 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,27 @@ | ||
name: 'ChatGPT Integration' | ||
description: 'This action integrates ChatGPT into your CI.' | ||
name: "ChatGPT Integration" | ||
description: "This action integrates ChatGPT into your CI." | ||
branding: | ||
icon: activity | ||
color: green | ||
|
||
inputs: | ||
number: | ||
description: 'ID of Pull Request or Issue' | ||
description: "ID of Pull Request or Issue" | ||
required: true | ||
sessionToken: | ||
description: 'Your ChatGPT session token.' | ||
description: "Your ChatGPT session token." | ||
required: true | ||
mode: | ||
description: 'Mode' | ||
description: "Mode" | ||
required: true | ||
default: 'pr' | ||
default: "pr" | ||
split: | ||
description: 'Should I split the prompt and how to split it?' | ||
description: "Should I split the prompt and how to split it?" | ||
required: true | ||
default: 'yolo' | ||
default: "yolo" | ||
outputs: | ||
comment: | ||
description: 'The comment from chatgpt.' | ||
description: "The comment from chatgpt." | ||
runs: | ||
using: 'node16' | ||
main: 'dist/index.js' | ||
using: "node16" | ||
main: "dist/index.js" |