From 2cda011c72d9b31e16e3fe1607f4b77389b41b68 Mon Sep 17 00:00:00 2001 From: Max Jones <14077947+maxrjones@users.noreply.github.com> Date: Wed, 18 Feb 2026 09:32:36 -0500 Subject: [PATCH] Include date in automatic reporting PR title --- .github/workflows/update-reports.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-reports.yml b/.github/workflows/update-reports.yml index 9b7e56d..1c0eab4 100644 --- a/.github/workflows/update-reports.yml +++ b/.github/workflows/update-reports.yml @@ -23,6 +23,10 @@ jobs: - name: Checkout repository uses: actions/checkout@v5 + - name: Get current date + id: date + run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT + - name: Install uv uses: astral-sh/setup-uv@v7 with: @@ -55,7 +59,7 @@ jobs: uses: peter-evans/create-pull-request@v7.0.11 with: commit-message: "Update reports for ${{ github.run_id }}" - title: "Update reports" + title: "Update reports (${{ steps.date.outputs.date }})" body: | Automated update of commit reports and visualization.