Skip to content

Commit 2ab4847

Browse files
committed
Chore: 통합 워크플로우 수정
1 parent 0453a94 commit 2ab4847

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/integration.yaml

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

0 commit comments

Comments
 (0)