Skip to content

Commit

Permalink
amend md file filtering regex
Browse files Browse the repository at this point in the history
  • Loading branch information
nowgnas committed Dec 28, 2024
1 parent 4d221ed commit c322bba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/summarize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
echo "changed_files=" >> $GITHUB_ENV
else
# .md 파일만 필터링
MD_FILES=$(echo "$CHANGED_FILES" | grep '\.md$')
MD_FILES=$(echo "$CHANGED_FILES" | grep -E '^week[0-9]+/.*\.md$')
if [ -z "$MD_FILES" ]; then
echo "changed_files=" >> $GITHUB_ENV
Expand Down

0 comments on commit c322bba

Please sign in to comment.