Skip to content

Commit 205cc14

Browse files
committed
workflow updates
1 parent 896a394 commit 205cc14

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/vendor.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -162,17 +162,18 @@ jobs:
162162
$count = [int]$env:COUNT_UPDATED
163163
164164
if ($count -eq 0) {
165-
$summary = @'
165+
$summary = @"
166166
### ✅ No Updates Available
167167
168168
All vendor dependencies are up to date! 🎉
169-
'@
170-
} else {
171-
$word = if ($count -eq 1) { 'dependency' } else { 'dependencies' }
172-
$summary = @'
169+
170+
"@
171+
} else {
172+
$word = if ($count -eq 1) { 'dependency' } else { 'dependencies' }
173+
$summary = @"
173174
### 🔄 Updates Found
174175
175-
'@
176+
"@
176177
$summary += '📦 **' + $env:SINGLE_DEP_NAME + '** updated from `' + $env:SINGLE_DEP_OLD_VERSION + '` to `' + $env:SINGLE_DEP_NEW_VERSION + '`' + [Environment]::NewLine + [Environment]::NewLine
177178
$summary += '📦 **' + $count + '** vendor ' + $word + ' updated:' + [Environment]::NewLine + [Environment]::NewLine
178179
}

0 commit comments

Comments
 (0)