Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
prerelease-type을beta.0으로 설정하면 의도하신6.0.0-beta.0대신6.0.0-beta.0.0과 같이 번호가 중복되어 생성될 위험이 있습니다.release-please가 내부적으로 사용하는semver라이브러리의 동작 방식에 따르면, 프리릴리스 식별자(identifier) 뒤에 자동으로 숫자가 붙습니다.prerelease-type: "beta"-> 첫 버전x.y.z-beta.0생성, 이후beta.1,beta.2로 증가prerelease-type: "beta.0"-> 첫 버전x.y.z-beta.0.0생성, 이후beta.0.1,beta.0.2로 증가만약 현재
beta설정에서 숫자가 붙지 않는 현상(예:6.0.0-beta)이 발생한다면, 이는release-please버전이 낮거나 매니페스트 파일(.release-please-manifest.json)의 초기 설정 때문일 수 있습니다.beta.0으로 타입을 변경하기보다는beta를 유지하면서, 첫 프리릴리스 시점에 매니페스트 파일의 버전을6.0.0-beta.0으로 수동 조정하여 시작하는 것이 더 표준적인 방법입니다.