Skip to content

Commit 69d3771

Browse files
committed
test update
1 parent 9928a56 commit 69d3771

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/integration.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,8 @@ jobs:
7979
filename=$(basename "$file" | tr -d '"')
8080
github_username="${{ github.event.pull_request.user.login }}"
8181
82-
# 문자열 비교를 위해 따옴표로 감싸기
83-
filename_quoted="$filename"
84-
username_quoted="$github_username"
85-
8682
# 파일명이 GitHub계정명인지 확인
87-
if [[ ! "$filename_quoted" =~ ^$username_quoted ]]; then
83+
if [[ "${filename}" != ${github_username}* ]]; then
8884
echo "- $file (파일명은 '$github_username'로 해주셔야 합니다)" >> $GITHUB_STEP_SUMMARY
8985
success=false
9086
fi

0 commit comments

Comments
 (0)