Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix lerna independent commit message #1819

Merged
merged 1 commit into from Feb 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/pages/docs/build-platforms/github-actions.mdx
Expand Up @@ -96,3 +96,4 @@ steps:
- [`auto-config-hipstersmoothie`](https://github.com/hipstersmoothie/auto-config-hipstersmoothie/blob/07d128afd96ac6a7b0fe3f04313847c0fc3d84a2/.github/workflows/push.yml)
- [`create-check`](https://github.com/hipstersmoothie/create-check/blob/master/.github/workflows/push.yml)
- [`octokit-cli`](https://github.com/hipstersmoothie/octokit-cli/blob/master/.github/workflows/push.yml)
- [`auto-lerna-gh-actions`](https://github.com/hipstersmoothie/auto-lerna-gh-actions)
2 changes: 1 addition & 1 deletion plugins/npm/__tests__/npm.test.ts
Expand Up @@ -1282,7 +1282,7 @@ describe("canary", () => {
"--yes",
"--no-push",
"-m",
'"Bump independent versions [skip ci]"',
`'"Bump independent versions [skip ci]"'`,
false,
]);
});
Expand Down
2 changes: 1 addition & 1 deletion plugins/npm/src/index.ts
Expand Up @@ -946,7 +946,7 @@ export default class NPMPlugin implements IPlugin {
"--no-push",
"-m",
isIndependent
? '"Bump independent versions [skip ci]"'
? `'"Bump independent versions [skip ci]"'`
: VERSION_COMMIT_MESSAGE,
this.exact && "--exact",
...verboseArgs,
Expand Down