From 12aea5fd864fb27afe7796984b5912f046e8a8cf Mon Sep 17 00:00:00 2001 From: Odonno Date: Sat, 9 Feb 2019 12:12:40 +0100 Subject: [PATCH] fix: rename bot login --- readme.md | 2 +- shared/constants.js | 2 +- shared/constants.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index bceeafb..ef23798 100644 --- a/readme.md +++ b/readme.md @@ -51,7 +51,7 @@ These environment variables should be set to launch the bot. | Variable | Description | Default value | |-|-|-| -| GITHUB_BOT_LOGIN | Login of the GitHub account of the bot | uwptoolkitbot | +| GITHUB_BOT_LOGIN | Login of the GitHub account of the bot | windowstoolkitbot | | GITHUB_BOT_ACCESS_TOKEN | Personal Access Token used to retrieve data from the GitHub API | | | GITHUB_BOT_TARGET_REPO_OWNER | Target Repository owner | windows-toolkit | | GITHUB_BOT_TARGET_REPO_NAME | Target Repository name | WindowsCommunityToolkit | diff --git a/shared/constants.js b/shared/constants.js index 192e740..541a5df 100644 --- a/shared/constants.js +++ b/shared/constants.js @@ -1,6 +1,6 @@ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); -exports.BOT_LOGIN = process.env.GITHUB_BOT_LOGIN || 'uwptoolkitbot'; +exports.BOT_LOGIN = process.env.GITHUB_BOT_LOGIN || 'windowstoolkitbot'; exports.ACCESS_TOKEN = process.env.GITHUB_BOT_ACCESS_TOKEN; exports.TARGET_REPO_OWNER = process.env.GITHUB_BOT_TARGET_REPO_OWNER || 'windows-toolkit'; exports.TARGET_REPO_NAME = process.env.GITHUB_BOT_TARGET_REPO_NAME || 'WindowsCommunityToolkit'; diff --git a/shared/constants.ts b/shared/constants.ts index 5cb2dcd..ea07933 100644 --- a/shared/constants.ts +++ b/shared/constants.ts @@ -1,4 +1,4 @@ -export const BOT_LOGIN = process.env.GITHUB_BOT_LOGIN || 'uwptoolkitbot'; +export const BOT_LOGIN = process.env.GITHUB_BOT_LOGIN || 'windowstoolkitbot'; export const ACCESS_TOKEN = process.env.GITHUB_BOT_ACCESS_TOKEN; export const TARGET_REPO_OWNER = process.env.GITHUB_BOT_TARGET_REPO_OWNER || 'windows-toolkit'; export const TARGET_REPO_NAME = process.env.GITHUB_BOT_TARGET_REPO_NAME || 'WindowsCommunityToolkit';