We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9ad356a + d20d3d6 commit c8c8830Copy full SHA for c8c8830
1 file changed
.github/workflows/vendor.yml
@@ -155,17 +155,10 @@ jobs:
155
$count = [int]$env:COUNT_UPDATED
156
157
if ($count -eq 0) {
158
- $summary = @"
159
- ### ✅ No Updates Available
160
-
161
- All vendor dependencies are up to date! 🎉
162
- "@
+ $summary = "### ✅ No Updates Available`n`nAll vendor dependencies are up to date! 🎉`n"
163
} else {
164
$word = if ($count -eq 1) { 'dependency' } else { 'dependencies' }
165
166
- ### 🔄 Updates Found
167
168
+ $summary = "### 🔄 Updates Found`n`n"
169
if ($count -eq 1) {
170
$summary += '📦 **' + $env:SINGLE_DEP_NAME + '** updated from `' + $env:SINGLE_DEP_OLD_VERSION + '` to `' + $env:SINGLE_DEP_NEW_VERSION + '`' + "`n" + "`n"
171
0 commit comments