You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 6, 2024. It is now read-only.
- Adds Prettier configuration file for consistent code formatting.
- Updates README with more details on features, environment variables,
inputs, and development sections.
- Includes instructions on how to choose between ChatGPT API
implementations and how to inspect messages between ChatGPT server.
Copy file name to clipboardExpand all lines: README.md
+36-23Lines changed: 36 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,11 @@
4
4
5
5
## Overview
6
6
7
-
This [ChatGPT](https://platform.openai.com/docs/guides/chat) based GitHub Action provides a summary, release notes and review of pull requests. The prompts have been tuned for concise response. To prevent excessive notifications, this action can be configured to skip adding review comments when the changes look good for the most part.
7
+
This [ChatGPT](https://platform.openai.com/docs/guides/chat) based GitHub Action
8
+
provides a summary, release notes and review of pull requests. The prompts have
9
+
been tuned for a concise response. To prevent excessive notifications, this
10
+
action can be configured to skip adding review comments when the changes look
11
+
good for the most part.
8
12
9
13
### Features
10
14
@@ -67,22 +71,25 @@ See also: [./action.yml](./action.yml)
67
71
#### Environment variables
68
72
69
73
- `GITHUB_TOKEN`
70
-
- `CHATGPT_ACCESS_TOKEN`: ChatGPT access token, see also: https://github.com/acheong08/ChatGPT.
74
+
- `CHATGPT_ACCESS_TOKEN`: ChatGPT access token, see also:
75
+
https://github.com/acheong08/ChatGPT.
71
76
72
-
The access token can be easily obtained from https://chat.openai.com/api/auth/session after
73
-
logging into ChatGPT.
77
+
The access token can be easily obtained from
78
+
https://chat.openai.com/api/auth/session after logging into ChatGPT.
74
79
75
-
- `OPENAI_API_KEY`: use this to authenticate with OpenAI API, official ChatGPT's behavior using
76
-
`gpt-3.5-turbo`, see also: https://github.com/transitive-bullshit/chatgpt-api
80
+
- `OPENAI_API_KEY`: use this to authenticate with OpenAI API, official ChatGPT's
0 commit comments