From 0b11459b830d52379e5a9b31ef67001a729522f2 Mon Sep 17 00:00:00 2001 From: Thomas Bouffard <27200110+tbouffard@users.noreply.github.com> Date: Wed, 23 Jul 2025 16:18:09 +0200 Subject: [PATCH] ci: display the date of the release in the release notes Compute the date and put it in the template. --- .github/workflows/create-github-release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/create-github-release.yml b/.github/workflows/create-github-release.yml index 307523596e..4afac567c1 100644 --- a/.github/workflows/create-github-release.yml +++ b/.github/workflows/create-github-release.yml @@ -14,6 +14,7 @@ jobs: - name: Set env run: | echo "VERSION=${GITHUB_REF_NAME#v}" >> $GITHUB_ENV + echo "RELEASE_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV - name: Get milestone number env: GH_TOKEN: ${{ github.token }} @@ -34,6 +35,8 @@ jobs: uses: ncipollo/release-action@v1 with: body: | + _Version ${{ env.VERSION }} released on ${{ env.RELEASE_DATE }}._ + **Adapt this one liner summary** ⚡ This new version improves ... ⚡