File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -86,14 +86,14 @@ jobs:
8686
8787 if ($newVer.Major -gt $oldVer.Major) {
8888 $changeType = "major"
89- $emoji = "β οΈ "
89+ $emoji = "π₯ "
9090 $isMajor = $true
9191 } elseif ($newVer.Minor -gt $oldVer.Minor) {
9292 $changeType = "minor"
93- $emoji = "β¨ "
93+ $emoji = "π "
9494 } else {
9595 $changeType = "patch"
96- $emoji = "π "
96+ $emoji = "β¬οΈ "
9797 }
9898 }
9999 } catch {
@@ -140,7 +140,7 @@ jobs:
140140
141141 # Generate major updates changelog section
142142 if ($majorUpdates.Count -gt 0) {
143- $changelogSection = "`n<details>`n<summary>β οΈ Major version updates - View changelog</summary>`n`n"
143+ $changelogSection = "`n<details>`n<summary>π₯ Major version updates - View changelog</summary>`n`n"
144144 foreach ($update in $majorUpdates) {
145145 $changelogSection += "### [$($update.name)]($($update.repoUrl))`n"
146146 $changelogSection += "**$($update.oldVersion)** β **$($update.newVersion)**`n`n"
You canβt perform that action at this time.
0 commit comments