Update version change emojis: 🔥 major, 🚀 minor, ⬆️ patch

Co-authored-by: DRSDavidSoft <4673812+DRSDavidSoft@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-15 01:30:12 +00:00
parent 0f6584fa02
commit cd2c4ec877

View File

@@ -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<details>`n<summary>⚠️ Major version updates - View changelog</summary>`n`n"
$changelogSection = "`n<details>`n<summary>🔥 Major version updates - View changelog</summary>`n`n"
foreach ($update in $majorUpdates) {
$changelogSection += "### [$($update.name)]($($update.repoUrl))`n"
$changelogSection += "**$($update.oldVersion)** → **$($update.newVersion)**`n`n"