Skip to content

Commit

Permalink
동일한 파일 이름일 시, 문제 현상 스크립트 분기처리도 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
GoldenPearls authored Aug 28, 2024
1 parent 4fbb0c0 commit d9b563d
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/Rename and Commit Markdown Files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,18 @@ jobs:
- name: Rename Markdown files
run: |
for file in developLog/*.md; do
title=$(grep -m 1 '^# ' "$file" | sed 's/^# //')
if [ -n "$title" ]; then
new_filename="developLog/${title// /_}.md"
# 첫 번째 H1 제목을 추출하여 제목으로 사용
title=$(grep -m 1 '^# ' "$file" | sed 's/^# //')
if [ -n "$title" ]; then
# 새 파일명을 제목을 기반으로 생성, 공백은 밑줄(_)로 대체
new_filename="developLog/${title// /_}.md"
# 파일 이름이 동일한 경우에는 mv 명령을 건너뜁니다
if [ "$file" != "$new_filename" ]; then
mv "$file" "$new_filename"
fi
fi
done
- name: Commit changes
Expand Down

0 comments on commit d9b563d

Please sign in to comment.