From 6ad4c4c1092eb79641985ca5e4a70b3377bbad8a Mon Sep 17 00:00:00 2001 From: Naoki Endoh Date: Mon, 5 Jul 2021 10:50:12 +0900 Subject: [PATCH] fix: replace to backtick for placeholder (#2) --- src/ryu-cho.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ryu-cho.ts b/src/ryu-cho.ts index 77c2368..47718ba 100644 --- a/src/ryu-cho.ts +++ b/src/ryu-cho.ts @@ -149,7 +149,7 @@ export class RyuCho { this.repo.updateRemote(shortHash) - const ref = issueNo ? '(#${issueNo})' : '' + const ref = issueNo ? `(#${issueNo})` : '' const title = `${removeHash(feed.contentSnippet)} ${ref}` const body = `resolves #${issueNo}\r\nCherry picked from ${feed.link}` const branch = shortHash