Skip to content

Commit

Permalink
fix: Change notion issue task/issue prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
rlch committed Feb 13, 2024
1 parent 59d1ad9 commit 88f9495
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ export default class Github {
async addPrefixToPRTitle(prefix: string): Promise<void> {
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({
Expand Down

0 comments on commit 88f9495

Please sign in to comment.