DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit 1c72ea096b63fe87d005fe002f3999b72fa9be4b
parent 6260f5b44fb03090e426563d5e79bbcfb8d76cfe
Author: falkTX <falktx@falktx.com>
Date:   Mon,  4 Oct 2021 22:36:48 +0100

Try a better message

Signed-off-by: falkTX <falktx@falktx.com>

Diffstat:
M.github/workflows/irc.yml | 20+++++++++++++-------
1 file changed, 13 insertions(+), 7 deletions(-)

diff --git a/.github/workflows/irc.yml b/.github/workflows/irc.yml @@ -7,10 +7,16 @@ jobs: runs-on: ubuntu-latest name: IRC notification steps: - - name: IRC notification - uses: Gottox/irc-message-action@v2 - with: - channel: '#kxstudio' - nickname: kxstudio-bot - message: |- - ${{ github.actor }} pushed ${{ github.event.head_commit.message }} ${{ github.event.compare }} + - uses: jungwinter/split@v2 + id: split + with: + msg: ${{ github.event.head_commit.message }} + separator: '\n' + maxsplit: 1 + - 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.compare }}