From 88f9495c973044085eacf815c9444864efc38d10 Mon Sep 17 00:00:00 2001 From: RJM Date: Tue, 13 Feb 2024 16:25:37 +1100 Subject: [PATCH] fix: Change notion issue task/issue prefix --- src/core/github.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/github.ts b/src/core/github.ts index 0cad19e..df54ab6 100644 --- a/src/core/github.ts +++ b/src/core/github.ts @@ -21,8 +21,8 @@ export default class Github { async addPrefixToPRTitle(prefix: string): Promise { if ( !this.ghEvent.title.includes(prefix) && - !this.ghEvent.title.includes('TUTT-') && - !this.ghEvent.title.includes('TUT-') + !this.ghEvent.title.includes('ISSUE-') && + !this.ghEvent.title.includes('TASK-') ) { const newTitle = prefix + this.ghEvent.title await this.octokit.rest.pulls.update({