We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd9e9b4 commit 9a87865Copy full SHA for 9a87865
.github/workflows/integration.yaml
@@ -92,7 +92,8 @@ jobs:
92
# 파일명만 추출 (경로 제외)
93
filename=$(basename "$file")
94
# 파일명이 GitHub계정명인지 확인
95
- if ! echo "$filename" | grep -q "^${pr_author}\|^${pr_author}-"; then
+ shopt -s nocasematch
96
+ if [[ ! "$filename" = "$pr_author"* ]]; then
97
echo "- $file (파일명은 '$pr_author'형식으로 해주셔야 합니다)" >> $GITHUB_STEP_SUMMARY
98
success=false
99
fi
0 commit comments