fix(marketplace): owner.email를 valid 형식으로 채움 (closes #7)#14
Open
hongsw wants to merge 1 commit intorevfactory:mainfrom
Open
fix(marketplace): owner.email를 valid 형식으로 채움 (closes #7)#14hongsw wants to merge 1 commit intorevfactory:mainfrom
hongsw wants to merge 1 commit intorevfactory:mainfrom
Conversation
Copilot CLI 등 일부 런타임은 marketplace.json의 `owner.email`이 비어 있으면 'Invalid email' 검증 오류로 마켓플레이스 추가에 실패한다. Claude Code는 빈 문자열을 허용하지만 양 런타임 호환을 위해 valid한 형식이 필요하다. revfactory 개인 이메일을 노출하지 않도록 GitHub 표준 noreply 형식 (`<id>+<login>@users.noreply.github.com`)을 채워둔다. 메인테이너가 다른 이메일로 바꾸길 원하면 같은 위치만 교체하면 된다. 검증: - python3 -m json.tool 통과 - RFC-style email regex 매치 - @users.noreply.github.com 패턴 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Closes #7
문제
marketplace.json의owner.email이 빈 문자열(\"\")이라 일부 런타임이 마켓플레이스 추가를 거부합니다. #7 보고대로 Copilot CLI는 다음 오류로 실패:```
오류: Invalid marketplace.json: owner.email: Invalid email
```
Claude Code는 빈 문자열을 허용해 영향이 가시화되지 않았지만, 양 런타임 호환을 위해 valid한 이메일 형식이 필요합니다.
변경
```diff
```
GitHub 표준 noreply 형식 (`+@users.noreply.github.com`)을 사용했습니다 — 개인 이메일을 노출하지 않으면서 valid한 형식. 메인테이너님께서 다른 이메일을 선호하시면 같은 위치만 교체하시면 됩니다.
검증
영향