Skip to content

Commit

Permalink
fix: github link regex 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
shkisme committed Oct 13, 2023
1 parent 5e9af96 commit cb146a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
public class GitLink {

public static final String GIT_LINK_INVALID = "https://github.com 로 시작하는 깃허브 주소를 입력해주세요.";
public static final String GIT_LINK_REGEX = "^https://github.com/\\S+$";
public static final String GIT_LINK_REGEX = "^https://github.com.*";

private static final Pattern GIT_LINK_FORMAT = Pattern.compile(GIT_LINK_REGEX);

Expand Down

0 comments on commit cb146a2

Please sign in to comment.