Merge pull request #8175 from backstage/rugvip/release-flow

Tweak release process to require changesets for new packages
This commit is contained in:
Patrik Oldsberg
2021-11-22 13:23:04 +01:00
committed by GitHub
3 changed files with 7 additions and 3 deletions
+3 -1
View File
@@ -96,7 +96,9 @@ async function main() {
const newVersions = packageVersions.filter(
({ oldVersion, newVersion }) =>
oldVersion !== newVersion && newVersion !== '<none>',
oldVersion !== newVersion &&
oldVersion !== '<none>' &&
newVersion !== '<none>',
);
if (newVersions.length === 0) {