Compare commits

..

11 커밋

작성자 SHA1 메시지 날짜
44a04f8cf7 Merge pull request 'develop' (#30) from develop into main
All checks were successful
Build and Deploy Wing / build-and-deploy (push) Successful in 29s
Reviewed-on: #30
2026-02-17 16:50:18 +09:00
c9f55c82a3 Merge pull request 'develop' (#28) from develop into main
All checks were successful
Build and Deploy Wing / build-and-deploy (push) Successful in 28s
Reviewed-on: #28
2026-02-17 11:02:28 +09:00
1df0425323 Merge pull request 'fix(sidebar): 검색 복원, 경고 필터, 내부 스크롤 수정' (#26) from develop into main
All checks were successful
Build and Deploy Wing / build-and-deploy (push) Successful in 31s
Reviewed-on: #26
2026-02-17 08:18:37 +09:00
9bbc52cc78 Merge pull request 'develop' (#23) from develop into main
All checks were successful
Build and Deploy Wing / build-and-deploy (push) Successful in 29s
Reviewed-on: #23
2026-02-17 07:15:24 +09:00
2744374f14 Merge pull request 'develop' (#20) from develop into main
All checks were successful
Build and Deploy Wing / build-and-deploy (push) Successful in 28s
Reviewed-on: #20
2026-02-17 06:06:30 +09:00
8eb162fd8b Merge pull request 'release: develop → main 배포' (#18) from develop into main
All checks were successful
Build and Deploy Wing / build-and-deploy (push) Successful in 28s
Reviewed-on: #18
2026-02-16 22:47:39 +09:00
ea7dcc353f Merge pull request 'feat(map): 항적조회 기능 (develop → main)' (#15) from develop into main
All checks were successful
Build and Deploy Wing / build-and-deploy (push) Successful in 23s
Reviewed-on: #15
2026-02-16 18:33:28 +09:00
29be79d7bf Merge pull request 'release: v0.3 배포 (지도 최적화 + 설정 영속화)' (#13) from develop into main
All checks were successful
Build and Deploy Wing / build-and-deploy (push) Successful in 19s
Reviewed-on: #13
2026-02-16 16:28:37 +09:00
8e275518b2 Merge pull request 'feat(auth): Google OAuth 로그인 구현' (#8) from develop into main
All checks were successful
Build and Deploy Wing / build-and-deploy (push) Successful in 19s
Reviewed-on: #8
2026-02-16 08:50:35 +09:00
a594154512 Merge pull request 'ci: MapTiler API 키 환경변수 전달 + 프로덕션 지도 스타일 적용' (#6) from develop into main
All checks were successful
Build and Deploy Wing / build-and-deploy (push) Successful in 19s
Reviewed-on: #6
2026-02-16 07:53:21 +09:00
5d613ccea3 Merge pull request 'ci: Actions 활성화 후 CI/CD 파이프라인 검증' (#4) from develop into main
All checks were successful
Build and Deploy Wing / build-and-deploy (push) Successful in 1m20s
Reviewed-on: #4
2026-02-16 07:40:20 +09:00

파일 보기

@ -20,10 +20,9 @@ fi
# Conventional Commits 정규식
# type(scope): subject
# - type: feat|fix|docs|style|refactor|test|chore|ci|perf (필수)
# - scope: 괄호 제외 모든 문자 허용 — 한/영/숫자/특수문자 (선택)
# - subject: 1자 이상 (길이는 바이트 기반 별도 검증)
PATTERN='^(feat|fix|docs|style|refactor|test|chore|ci|perf)(\([^)]+\))?: .+$'
MAX_SUBJECT_BYTES=200 # UTF-8 한글(3byte) 허용: 72문자 ≈ 최대 216byte
# - scope: 영문, 숫자, 한글, 점, 밑줄, 하이픈 허용 (선택)
# - subject: 1~72자, 한/영 혼용 허용 (필수)
PATTERN='^(feat|fix|docs|style|refactor|test|chore|ci|perf)(\([a-zA-Z0-9가-힣._-]+\))?: .{1,72}$'
FIRST_LINE=$(head -1 "$COMMIT_MSG_FILE")
@ -59,13 +58,3 @@ if ! echo "$FIRST_LINE" | grep -qE "$PATTERN"; then
echo ""
exit 1
fi
# 길이 검증 (바이트 기반 — UTF-8 한글 허용)
MSG_LEN=$(echo -n "$FIRST_LINE" | wc -c | tr -d ' ')
if [ "$MSG_LEN" -gt "$MAX_SUBJECT_BYTES" ]; then
echo ""
echo " ✗ 커밋 메시지가 너무 깁니다 (${MSG_LEN}바이트, 최대 ${MAX_SUBJECT_BYTES})"
echo " 현재 메시지: $FIRST_LINE"
echo ""
exit 1
fi