remove quotes from irc message

This commit is contained in:
sentriz
2023-09-25 19:06:38 +02:00
parent 5519c84f29
commit 548ab4f51c

View File

@@ -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