From 548ab4f51cbdfb99e0ddf7a04d608c147d8fac02 Mon Sep 17 00:00:00 2001 From: sentriz Date: Mon, 25 Sep 2023 19:06:38 +0200 Subject: [PATCH] remove quotes from irc message --- .github/workflows/notify-irc.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/notify-irc.yaml b/.github/workflows/notify-irc.yaml index 08334e2..2ccf27b 100644 --- a/.github/workflows/notify-irc.yaml +++ b/.github/workflows/notify-irc.yaml @@ -9,5 +9,5 @@ jobs: runs-on: ubuntu-latest steps: - run: | - curl "${{ secrets.IRC_NOTIFY_URL }}" -F target=#gonic -F 'message=push to master @${{ github.event.head_commit.author.username }} "${{ github.event.head_commit.message }}"' >/dev/null 2>&1 + curl "${{ secrets.IRC_NOTIFY_URL }}" -F target=#gonic -F 'message=push to master (@${{ github.event.head_commit.author.username }}) ${{ github.event.head_commit.message }}' >/dev/null 2>&1 exit 0