Browse Source

Try a better message

Signed-off-by: falkTX <falktx@falktx.com>
pull/338/head
falkTX 3 years ago
parent
commit
1c72ea096b
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 13 additions and 7 deletions
  1. +13
    -7
      .github/workflows/irc.yml

+ 13
- 7
.github/workflows/irc.yml View File

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

Loading…
Cancel
Save