We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d238f1 commit 5dd25c6Copy full SHA for 5dd25c6
.github/workflows/irc.yml
@@ -0,0 +1,26 @@
1
+name: irc
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '*'
7
+ pull_request:
8
9
10
11
+jobs:
12
+ notification:
13
+ runs-on: ubuntu-latest
14
+ name: IRC notification
15
+ steps:
16
+ - name: Format message
17
+ id: message
18
+ run: |
19
+ message="${{ github.actor }} pushed $(echo '${{ github.event.commits[0].message }}' | head -n 1) ${{ github.event.commits[0].url }}"
20
+ echo ::set-output name=message::"${message}"
21
+ - name: IRC notification
22
+ uses: Gottox/irc-message-action@v2
23
+ with:
24
+ channel: '#kxstudio'
25
+ nickname: kxstudio-bot
26
+ message: ${{ steps.message.outputs.message }}
0 commit comments