Skip to content

Commit 426d9e6

Browse files
Ensure downgrades don't show up as updates
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 59ef29c commit 426d9e6

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/vendor.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,12 @@ jobs:
103103
} elseif ($newVer.Minor -gt $oldVer.Minor) {
104104
$changeType = "minor"
105105
$emoji = "🚀"
106-
} else {
106+
} elseif ($newVer -gt $oldVer) {
107107
$changeType = "patch"
108108
$emoji = "⬆️"
109+
} else {
110+
$changeType = "unknown"
111+
$emoji = "🔄"
109112
}
110113
}
111114
} catch {

0 commit comments

Comments
 (0)