-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Xinwei Xiong(cubxxw-openim) <[email protected]>
- Loading branch information
Showing
1 changed file
with
57 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# A string containing the path to the manifest file. | ||
# Default value is an empty string. | ||
INPUT_MANIFEST="" | ||
|
||
# A boolean value indicating whether to remove any existing labels that are not in the manifest file. | ||
# Default value is "false". | ||
INPUT_PRUNE="false" | ||
|
||
# A string containing a GitHub personal access token with the `repo` scope. | ||
# If not provided, the code will look for the `GITHUB_TOKEN` environment variable. | ||
# Default value is an empty string. | ||
INPUT_TOKEN="" | ||
|
||
# A string containing the full name of the repository to synchronize the labels for, in the format <owner>/<repo>. | ||
# If not provided, the code will look for the `GITHUB_REPOSITORY` environment variable. | ||
# Default value is an empty string. | ||
INPUT_REPOSITORY="" | ||
|
||
|
||
#################################################################################################### | ||
# ChatGPT API Key | ||
CHATGPT_API_KEY=<your-api-key> | ||
|
||
# ChatGPT API URL | ||
CHATGPT_API_URL=https://api-inference.huggingface.co/models/microsoft/DialoGPT-medium | ||
|
||
# Open AI API Key | ||
OPENAI_API_KEY=<your-api-key> | ||
|
||
# Discord Bot Token | ||
DISCORD_BOT_TOKEN=<your-bot-token> | ||
|
||
#################################################################################################### | ||
# GitHub Personal Access Token (for accessing repositories and running actions) | ||
# GitHub Actions Secret (for encrypting and decrypting secrets used in workflows) | ||
GITHUB_ACTIONS_SECRET= | ||
|
||
# GitHub Username | ||
GITHUB_USERNAME= | ||
|
||
# GitHub Password | ||
GITHUB_PASSWORD= | ||
|
||
# github.com/kubbot Read-only tokens | ||
GITHUB_TOKEN=<token> | ||
#################################################################################################### | ||
# PostgreSQL Database Connection String | ||
POSTGRES_CONNECTION_STRING=postgres://username:password@localhost:5432/mydatabase | ||
|
||
# MongoDB Database Connection String | ||
MONGODB_CONNECTION_STRING=mongodb://username:password@localhost:27017/mydatabase | ||
|
||
# Redis Database Connection String | ||
REDIS_CONNECTION_STRING=redis://localhost:6379/0 | ||
|
||
# MySQL Database Connection String | ||
MYSQL_CONNECTION_STRING=mysql://username:password@tcp(localhost:3306)/mydatabase |