diff --git a/.env b/.env new file mode 100644 index 0000000..482896f --- /dev/null +++ b/.env @@ -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 /. +# 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= + +# ChatGPT API URL +CHATGPT_API_URL=https://api-inference.huggingface.co/models/microsoft/DialoGPT-medium + +# Open AI API Key +OPENAI_API_KEY= + +# Discord Bot Token +DISCORD_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= +#################################################################################################### +# 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 \ No newline at end of file