Skip to content

Commit ac8de6b

Browse files
authored
Fix week number calculation format in workflow
1 parent 246bd05 commit ac8de6b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/auto-weekly-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
id: calc
1818
run: |
1919
# 현재 날짜 기준 주차 계산 (1월 1일 기준)
20-
WEEK_NUM=$(date +%U)
20+
WEEK_NUM=$(date +%-U)
2121
# 주차를 2자리로 포맷 (01, 02, ...)
2222
WEEK_NUM_FORMATTED=$(printf "%02d" $((WEEK_NUM + 1)))
2323

0 commit comments

Comments
 (0)