Skip to content

Commit 3b66809

Browse files
committed
add irc notification on push
1 parent 8b6bd03 commit 3b66809

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/irc.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)