commit c9b1f631accd803bca1985d02e9ac1682fdff4fe parent d4ecaab1d2473a14c981022554954ae552fcc747 Author: falkTX <falktx@falktx.com> Date: Mon, 4 Oct 2021 22:58:01 +0100 Try yet again Signed-off-by: falkTX <falktx@falktx.com> Diffstat:
M | .github/workflows/irc.yml | | | 13 | ++++++------- |
1 file changed, 6 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/irc.yml b/.github/workflows/irc.yml @@ -7,15 +7,14 @@ jobs: runs-on: ubuntu-latest name: IRC notification steps: - - uses: jungwinter/split@v2 - id: split - with: - msg: ${{ github.event.commits[0].message }} - separator: '\n' + - name: Format message + id: message + run: | + message="${{ github.actor }} pushed ${{ github.event.commits[0].message }} ${{ github.event.commits[0].url }}" + echo ::set-output name=message::"${message}" - name: IRC notification uses: Gottox/irc-message-action@v2 with: channel: '#kxstudio' nickname: kxstudio-bot - message: |- - ${{ github.actor }} pushed ${{ steps.split.outputs._0 }} ${{ github.event.commits[0].url }} + message: steps.message.outputs.message