From 2fd8caff986c18a8790e27a8fc52218f91d90fb3 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Wed, 17 Sep 2025 17:18:25 +0100 Subject: [PATCH 1/2] Commit --- .github/workflows/check-for-updates.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-for-updates.yml b/.github/workflows/check-for-updates.yml index 716696a..d9f519a 100644 --- a/.github/workflows/check-for-updates.yml +++ b/.github/workflows/check-for-updates.yml @@ -90,7 +90,7 @@ jobs: echo "TZDATA_VERSION='$TZDATA_VERSION'" >> $GITHUB_ENV { echo 'TZDATA_NEWS<> "$GITHUB_ENV" @@ -100,7 +100,7 @@ jobs: run: | git checkout -b "updates/update_${TZDATA_VERSION}" git commit -m "Update tzdata to version $TZDATA_VERSION" \ - -m "$TZDATA_NEWS" + -m "$(cat $news_files)" git push --force origin "updates/update_${TZDATA_VERSION}" - name: Create pull request @@ -109,7 +109,7 @@ jobs: if: env.CHANGES_DETECTED == 'true' run: | gh pr create --title "Update tzdata to version $TZDATA_VERSION" \ - --body "$TZDATA_NEWS" \ + --body "$(cat $news_files)" \ --base master \ --head $(git rev-parse --abbrev-ref HEAD) \ --label "automatic-updates" From cebee9b56958265fd9bc1ea7f9945892e0f42fed Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Wed, 17 Sep 2025 17:27:54 +0100 Subject: [PATCH 2/2] Commit --- .github/workflows/check-for-updates.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check-for-updates.yml b/.github/workflows/check-for-updates.yml index d9f519a..2b9b40c 100644 --- a/.github/workflows/check-for-updates.yml +++ b/.github/workflows/check-for-updates.yml @@ -89,8 +89,8 @@ jobs: echo "TZDATA_VERSION='$TZDATA_VERSION'" >> $GITHUB_ENV { - echo 'TZDATA_NEWS<> "$GITHUB_ENV" @@ -100,7 +100,7 @@ jobs: run: | git checkout -b "updates/update_${TZDATA_VERSION}" git commit -m "Update tzdata to version $TZDATA_VERSION" \ - -m "$(cat $news_files)" + -m "$TZDATA_NEWS" git push --force origin "updates/update_${TZDATA_VERSION}" - name: Create pull request @@ -109,7 +109,7 @@ jobs: if: env.CHANGES_DETECTED == 'true' run: | gh pr create --title "Update tzdata to version $TZDATA_VERSION" \ - --body "$(cat $news_files)" \ + --body "$TZDATA_NEWS" \ --base master \ --head $(git rev-parse --abbrev-ref HEAD) \ --label "automatic-updates"