Skip to content

Commit 2cda011

Browse files
authored
Include date in automatic reporting PR title
1 parent dfe72f6 commit 2cda011

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/update-reports.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ jobs:
2323
- name: Checkout repository
2424
uses: actions/checkout@v5
2525

26+
- name: Get current date
27+
id: date
28+
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
29+
2630
- name: Install uv
2731
uses: astral-sh/setup-uv@v7
2832
with:
@@ -55,7 +59,7 @@ jobs:
5559
uses: peter-evans/create-pull-request@v7.0.11
5660
with:
5761
commit-message: "Update reports for ${{ github.run_id }}"
58-
title: "Update reports"
62+
title: "Update reports (${{ steps.date.outputs.date }})"
5963
body: |
6064
Automated update of commit reports and visualization.
6165

0 commit comments

Comments
 (0)