diff --git a/dist/index.js b/dist/index.js index 343c8313a..3cb4bb046 100644 --- a/dist/index.js +++ b/dist/index.js @@ -942,11 +942,7 @@ class IssuesProcessor { var _a; return __awaiter(this, void 0, void 0, function* () { const issueLogger = new issue_logger_1.IssueLogger(issue); - issueLogger.info(`Delete - branch from closed $ - $type - - - ${issue.title}`); + issueLogger.info(`Delete branch from closed $$type - ${issue.title}`); const pullRequest = yield this.getPullRequest(issue); if (!pullRequest) { issueLogger.info(`Not deleting this branch as no pull request was found for this $$type`); diff --git a/src/classes/issues-processor.ts b/src/classes/issues-processor.ts index 31bbb99d6..410178987 100644 --- a/src/classes/issues-processor.ts +++ b/src/classes/issues-processor.ts @@ -946,11 +946,7 @@ export class IssuesProcessor { private async _deleteBranch(issue: Issue): Promise { const issueLogger: IssueLogger = new IssueLogger(issue); - issueLogger.info(`Delete - branch from closed $ - $type - - - ${issue.title}`); + issueLogger.info(`Delete branch from closed $$type - ${issue.title}`); const pullRequest: IPullRequest | undefined | void = await this.getPullRequest(issue);