Skip to content

Commit 9a87865

Browse files
committed
Chore: 통합 워크플로우 수정
1 parent cd9e9b4 commit 9a87865

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/integration.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ jobs:
9292
# 파일명만 추출 (경로 제외)
9393
filename=$(basename "$file")
9494
# 파일명이 GitHub계정명인지 확인
95-
if ! echo "$filename" | grep -q "^${pr_author}\|^${pr_author}-"; then
95+
shopt -s nocasematch
96+
if [[ ! "$filename" = "$pr_author"* ]]; then
9697
echo "- $file (파일명은 '$pr_author'형식으로 해주셔야 합니다)" >> $GITHUB_STEP_SUMMARY
9798
success=false
9899
fi

0 commit comments

Comments
 (0)