Skip to content

Commit da9ff6e

Browse files
committed
Merge branch 'main' of https://github.com/HC-kang/leetcode-study into github-action-test
2 parents 802797e + 64d4429 commit da9ff6e

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 [[ ! "$filename" =~ ^${pr_author} ]]; then
95+
if ! echo "$filename" | grep -q "^${pr_author}-"; then
9696
echo "- $file (파일명은 '$pr_author'형식으로 해주셔야 합니다)" >> $GITHUB_STEP_SUMMARY
9797
success=false
9898
fi

0 commit comments

Comments
 (0)