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
echo "Publish label was included in the PR, won't be checking for changelog."
27
29
else
28
-
npx @microsoft/rush change --verify || { echo 'If you run the rush publish command locally and meant to publish the changes, add the publish label to the pr.' ; exit 1; }
30
+
pnpm chronus verify || { echo 'If you meant to publish the changes, add the publish label to the pr.' ; exit 1; }
1. Run `rush change` and describe the change and if it should be a `major`, `minor` or `patch` version.
128
+
1. Run `pnpm change` and describe the change and if it should be a `major`, `minor` or `patch` version.
128
129
129
130
-`major`: If there is a breaking change.(Except `autorest`, `@autorest/core` and `@autorest/modelefour` packages which should use minor bump for that.)
130
131
-`minor`: If there is a new feature but not breaking(Except `autorest`, `@autorest/core` and `@autorest/modelefour` packages)
131
132
-`patch`: For any bug fix.
132
133
133
-
2. Run `rush format` to ensure the code is formatted correctly.
134
+
2. Run `pnpm format` to ensure the code is formatted correctly.
0 commit comments