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: replace null with intentionally-skip in release-spec template comment #99

Merged
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/release-specification.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ describe('release-specification', () => {
# - "minor" (if you want to bump the minor part of the package's version)
# - "patch" (if you want to bump the patch part of the package's version)
# - an exact version with major, minor, and patch parts (e.g. "1.2.3")
# - null (to skip the package entirely)
# - intentionally-skip (to skip the package entirely)
#
# When you're finished making your selections, save this file and
# create-release-branch will continue automatically.
Expand Down Expand Up @@ -116,7 +116,7 @@ packages:
# - "minor" (if you want to bump the minor part of the package's version)
# - "patch" (if you want to bump the patch part of the package's version)
# - an exact version with major, minor, and patch parts (e.g. "1.2.3")
# - null (to skip the package entirely)
# - intentionally-skip (to skip the package entirely)
#
# When you're finished making your selections, save this file and then re-run
# create-release-branch.
Expand Down
2 changes: 1 addition & 1 deletion src/release-specification.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export async function generateReleaseSpecificationTemplateForMonorepo({
# - "minor" (if you want to bump the minor part of the package's version)
# - "patch" (if you want to bump the patch part of the package's version)
# - an exact version with major, minor, and patch parts (e.g. "1.2.3")
# - null (to skip the package entirely)
# - intentionally-skip (to skip the package entirely)
#
${afterEditingInstructions}
`.trim();
Expand Down
Loading