Skip to content

Commit c8c8830

Browse files
authored
Fix PowerShell here-string parser error in vendor.yml
2 parents 9ad356a + d20d3d6 commit c8c8830

1 file changed

Lines changed: 2 additions & 9 deletions

File tree

.github/workflows/vendor.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -155,17 +155,10 @@ jobs:
155155
$count = [int]$env:COUNT_UPDATED
156156
157157
if ($count -eq 0) {
158-
$summary = @"
159-
### ✅ No Updates Available
160-
161-
All vendor dependencies are up to date! 🎉
162-
"@
158+
$summary = "### ✅ No Updates Available`n`nAll vendor dependencies are up to date! 🎉`n"
163159
} else {
164160
$word = if ($count -eq 1) { 'dependency' } else { 'dependencies' }
165-
$summary = @"
166-
### 🔄 Updates Found
167-
168-
"@
161+
$summary = "### 🔄 Updates Found`n`n"
169162
if ($count -eq 1) {
170163
$summary += '📦 **' + $env:SINGLE_DEP_NAME + '** updated from `' + $env:SINGLE_DEP_OLD_VERSION + '` to `' + $env:SINGLE_DEP_NEW_VERSION + '`' + "`n" + "`n"
171164
} else {

0 commit comments

Comments
 (0)