From 162e47aebedb4138f5bad9640bc0e7ae954d8f44 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Wed, 6 Aug 2025 20:09:04 +0300 Subject: IRC workflow: removed excess ` and " Hopefully fixes the workflow. --- .github/workflows/irc.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/irc.yml b/.github/workflows/irc.yml index 63edd78..7aba3f8 100644 --- a/.github/workflows/irc.yml +++ b/.github/workflows/irc.yml @@ -25,14 +25,19 @@ jobs: - name: Get log id: get_log run: | - echo 'log<>$GITHUB_OUTPUT - git log --pretty="format:%h %s" --reverse \ - ${{ steps.last_successful_commit.outputs.commit_hash }}..HEAD`" >>$GITHUB_OUTPUT - echo 'EOF' >>$GITHUB_OUTPUT + { + echo 'LOG<> "$GITHUB_OUTPUT" - name: Post IRC message uses: rectalogic/notify-irc@v1 with: channel: "#sciteco" server: "irc.libera.chat" nickname: git-bot - message: ${{ steps.get_log.outputs.log }} + # NOTE: There is also ${{ github.event.ref }} ${{ join(github.event.commits.*.message) }} + # but it probably doesn't give us the commits since the last succesful one, but simply everything + # belonging to the push. + message: ${{ steps.get_log.outputs.LOG }} -- cgit v1.2.3