File tree Expand file tree Collapse file tree 2 files changed +7
-64
lines changed Expand file tree Collapse file tree 2 files changed +7
-64
lines changed Original file line number Diff line number Diff line change 22name : New Files Report
33on :
44 schedule :
5- - cron : ' 0 14 * * 1 ' # Every Monday at 2pm UTC
6- workflow_dispatch : # Manual trigger from Actions tab
5+ - cron : ' 0 16 * * 5 ' # This will run automatically every Friday at noon Eastern
6+ workflow_dispatch : # We can also trigger it manually from the Actions tab
77
88jobs :
99 report :
@@ -19,10 +19,10 @@ jobs:
1919 - name : Generate report
2020 id : report
2121 run : |
22- echo "## New Files Since August 30 , 2025" > report.md
22+ echo "## New files added since September 17 , 2025" > report.md
2323 echo "" >> report.md
2424
25- FILES=$(git log --since="2025-08-30 " --diff-filter=A --name-only --pretty=format:"" -- src/ 2>/dev/null | grep -v '^$' | sort -u || echo "")
25+ FILES=$(git log --since="2025-09-17 " --diff-filter=A --name-only --pretty=format:"" -- src/ 2>/dev/null | grep -v '^$' | sort -u || echo "")
2626
2727 if [ -z "$FILES" ]; then
2828 echo "No new files found." >> report.md
5151 github.rest.issues.create({
5252 owner: context.repo.owner,
5353 repo: context.repo.repo,
54- title: `New Files Report - ${today}`,
54+ title: `New files report - ${today}`,
5555 body: report,
56- labels: ['documentation', 'migration']
56+ labels: ['migration'],
57+ assignees: ['pwseg']
5758 });
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments