From cd2c4ec8776dcc13e2b1f5b084a7e7dd3b5828a3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 15 Dec 2025 01:30:12 +0000 Subject: [PATCH] =?UTF-8?q?Update=20version=20change=20emojis:=20?= =?UTF-8?q?=F0=9F=94=A5=20major,=20=F0=9F=9A=80=20minor,=20=E2=AC=86?= =?UTF-8?q?=EF=B8=8F=20patch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: DRSDavidSoft <4673812+DRSDavidSoft@users.noreply.github.com> --- .github/workflows/vendor.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/vendor.yml b/.github/workflows/vendor.yml index 32a4c1b..13800ab 100644 --- a/.github/workflows/vendor.yml +++ b/.github/workflows/vendor.yml @@ -86,14 +86,14 @@ jobs: if ($newVer.Major -gt $oldVer.Major) { $changeType = "major" - $emoji = "⚠️" + $emoji = "🔥" $isMajor = $true } elseif ($newVer.Minor -gt $oldVer.Minor) { $changeType = "minor" - $emoji = "✨" + $emoji = "🚀" } else { $changeType = "patch" - $emoji = "🐛" + $emoji = "⬆️" } } } catch { @@ -140,7 +140,7 @@ jobs: # Generate major updates changelog section if ($majorUpdates.Count -gt 0) { - $changelogSection = "`n
`n⚠️ Major version updates - View changelog`n`n" + $changelogSection = "`n
`n🔥 Major version updates - View changelog`n`n" foreach ($update in $majorUpdates) { $changelogSection += "### [$($update.name)]($($update.repoUrl))`n" $changelogSection += "**$($update.oldVersion)** → **$($update.newVersion)**`n`n"