From c5541ed877c2ae14c09314613292fb38d7bca5d4 Mon Sep 17 00:00:00 2001 From: Will Hunt Date: Mon, 22 Nov 2021 14:54:05 +0000 Subject: [PATCH] commandPrefix should default to `!gh` --- src/Connections/GithubRepo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Connections/GithubRepo.ts b/src/Connections/GithubRepo.ts index 2e414c31..ae274ced 100644 --- a/src/Connections/GithubRepo.ts +++ b/src/Connections/GithubRepo.ts @@ -163,7 +163,7 @@ export class GitHubRepoConnection implements IConnection { } private get commandPrefix() { - return (this.state.commandPrefix || "gh") + " "; + return (this.state.commandPrefix || "!gh") + " "; } public isInterestedInStateEvent(eventType: string, stateKey: string) {