Skip to content

Commit 54003d2

Browse files
committed
rename AGAIN plz work
1 parent 2723c5f commit 54003d2

File tree

2 files changed

+7
-64
lines changed

2 files changed

+7
-64
lines changed

.github/workflows/new-files-report.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
name: New Files Report
33
on:
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

88
jobs:
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
@@ -51,7 +51,8 @@ jobs:
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
});

.github/workflows/new-pages-report.yml

Lines changed: 0 additions & 58 deletions
This file was deleted.

0 commit comments

Comments
 (0)