Skip to content

test: add file 1 #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 11 commits into from
17 changes: 7 additions & 10 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,17 +91,14 @@ jobs:

echo "## 파일명 규칙 위반" >> $GITHUB_STEP_SUMMARY
for file in $files; do
if [ -f "$file" ]; then
# 파일명만 추출 (경로 제외)
filename=$(basename "$file")

# 파일명만 추출 (경로 제외)
filename=$(basename "$file")

# 파일명이 GitHub계정명인지 확인
shopt -s nocasematch
if [[ ! "$filename" = "$pr_author"* ]]; then
echo "- $file" >> $GITHUB_STEP_SUMMARY
success=false
fi
# 파일명이 GitHub계정명인지 확인
shopt -s nocasematch
if [[ ! "$filename" = "$pr_author"* ]]; then
echo "- $file" >> $GITHUB_STEP_SUMMARY
success=false
fi
done

Expand Down
Loading