Skip to content

Commit

Permalink
Update TodoClosed.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
fkdl0048 authored Aug 1, 2024
1 parent 5fa02cb commit e6fad2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/TodoClosed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
ISSUE_USER="${{ github.event.issue.user.login }}"
# 파일명으로 사용할 수 없는 문자 제거 및 변환
SANITIZED_ISSUE_TITLE=$(echo "${ISSUE_TITLE}" | sed 's/[^a-zA-Z0-9가-힣]/-/g' | tr -s '-' | sed 's/^-//' | sed 's/-$//')
SANITIZED_ISSUE_TITLE=$(echo "${ISSUE_TITLE}" | sed 's/[[:space:]]/-/g' | sed 's/[^a-zA-Z0-9가-힣-]//g')
# 만약 SANITIZED_ISSUE_TITLE이 비어있다면 기본값 사용
if [ -z "$SANITIZED_ISSUE_TITLE" ]; then
Expand Down

0 comments on commit e6fad2b

Please sign in to comment.