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 8b6bd03 commit 3b66809Copy full SHA for 3b66809
.github/workflows/irc.yml
@@ -0,0 +1,20 @@
1
+---
2
+name: "IRC Notification on push"
3
+on:
4
+ - "push"
5
+
6
+jobs:
7
+ notification:
8
+ runs-on: "ubuntu-latest"
9
+ name: "IRC Notifications"
10
+ steps:
11
+ - name: "IRC notification"
12
+ if: ${{ (github.repository == 'bornhack/bma') && (github.actor != 'dependabot[bot]') }}
13
+ uses: "Gottox/irc-message-action@v2"
14
+ with:
15
+ server: "irc.baconsvin.org"
16
+ channel: "#bornhack-website"
17
+ nickname: "webteambot"
18
+ message: |-
19
+ ${{ github.actor }} pushed new bma-cli-python commits: ${{ github.event.compare }} - latest commit msg: "${{ github.event.head_commit.message }}"
20
+...
0 commit comments