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 9928a56 commit 69d3771Copy full SHA for 69d3771
.github/workflows/integration.yaml
@@ -79,12 +79,8 @@ jobs:
79
filename=$(basename "$file" | tr -d '"')
80
github_username="${{ github.event.pull_request.user.login }}"
81
82
- # 문자열 비교를 위해 따옴표로 감싸기
83
- filename_quoted="$filename"
84
- username_quoted="$github_username"
85
-
86
# 파일명이 GitHub계정명인지 확인
87
- if [[ ! "$filename_quoted" =~ ^$username_quoted ]]; then
+ if [[ "${filename}" != ${github_username}* ]]; then
88
echo "- $file (파일명은 '$github_username'로 해주셔야 합니다)" >> $GITHUB_STEP_SUMMARY
89
success=false
90
fi
0 commit comments