From e209d8ba2a986fba48ba05ed0699662e537bf450 Mon Sep 17 00:00:00 2001 From: Bernd Ahlers Date: Thu, 21 Nov 2024 08:46:59 +0100 Subject: [PATCH] Fix quoting in notify-upgrade-notes.yml workflow (#20898) [skip ci] --- .github/workflows/notify-upgrade-notes.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/notify-upgrade-notes.yml b/.github/workflows/notify-upgrade-notes.yml index e5846e1e5dd5..2e85d0903f0b 100644 --- a/.github/workflows/notify-upgrade-notes.yml +++ b/.github/workflows/notify-upgrade-notes.yml @@ -25,7 +25,7 @@ jobs: with: channel-id: "${{ vars.SLACK_UPGRADE_NOTIFY_CHANNELS }}" slack-message: | - The Graylog ${{ github.ref_name || "test" }}/UPGRADING.md file was updated: + The Graylog ${{ github.ref_name || 'test' }}/UPGRADING.md file was updated: - Content: https://github.com/Graylog2/graylog2-server/blob/${{ github.sha || "test" }}/UPGRADING.md - Commit: https://github.com/Graylog2/graylog2-server/commit/${{ github.sha || "test" }} + Content: https://github.com/Graylog2/graylog2-server/blob/${{ github.sha || 'test' }}/UPGRADING.md + Commit: https://github.com/Graylog2/graylog2-server/commit/${{ github.sha || 'test' }}