Skip to content

Commit 86272ee

Browse files
committed
change date to July 20th
1 parent e316341 commit 86272ee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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 since July 20th, 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-07-20" --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,8 +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,
5656
labels: ['migration'],
57-
assignees: ['daseg']
57+
assignees: ['pwseg']
5858
});

0 commit comments

Comments
 (0)