Browse Source

Try yet again

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

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

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

Loading…
Cancel
Save