Skip to content

Commit

Permalink
Merge pull request #410 from jschmid1/fix/template-rendering
Browse files Browse the repository at this point in the history
fix: rendering templates due to missing brackets
  • Loading branch information
korthout authored Jan 23, 2024
2 parents 4e7a901 + 75b4a31 commit ec07f3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function replacePlaceholders(
.replace("${pull_author}", main.user.login)
.replace("${pull_number}", main.number.toString())
.replace("${pull_title}", main.title)
.replace("${pull_description", main.body ?? "")
.replace("${pull_description}", main.body ?? "")
.replace("${target_branch}", target)
.replace("${issue_refs}", issues.join(" "));
}
Expand Down

0 comments on commit ec07f3e

Please sign in to comment.