Skip to content

Commit be0f65e

Browse files
author
Kim Harjamaki
committed
Fix comment history string interpolation
1 parent ce28298 commit be0f65e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/autopilot-operator.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ foreach ($issue in $issues) {
130130
if ($comments) {
131131
$latestHuman = $comments | Where-Object { $_.user.type -eq "User" -and $_.user.login -ne "github-actions[bot]" } | Select-Object -First 1
132132
$commentHistory = $comments | Sort-Object created_at | ForEach-Object {
133-
"[${$_.user.login}] ${$_.body}"
133+
"[$($_.user.login)] $($_.body)"
134134
}
135135
}
136136
} catch {

0 commit comments

Comments
 (0)