You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/version_bump.yml
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -112,6 +112,11 @@ jobs:
112
112
> _Update the PR title and re-run the workflow._
113
113
`;
114
114
} else {
115
+
let warning = "";
116
+
if (currentVersion !== newVersion) {
117
+
warning = "> ⚠️ **Warning:** The required version (`" + newVersion + "`) does not match the current version (`" + currentVersion + "`) inside your VERSION file.\n" +
118
+
"> This PR will not be merged unless you bump the version number.\n";
0 commit comments