-
Notifications
You must be signed in to change notification settings - Fork 112
42 lines (41 loc) · 1.32 KB
/
irc-notify.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: "IRC Notification"
on:
push:
pull_request:
types: [opened]
issues:
types: [opened]
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: irc push
uses: rectalogic/notify-irc@v1
if: github.event_name == 'push'
with:
server: irc.blafasel.de
channel: "#iridium"
nickname: GitHub
notice: true
message: |
${{ github.actor }} pushed to ${{ github.event.ref }}: ${{ join(github.event.commits.*.message) }}
- name: irc pull request
uses: rectalogic/notify-irc@v1
if: github.event_name == 'pull_request'
with:
server: irc.blafasel.de
channel: "#iridium"
nickname: GitHub
notice: true
message: |
${{ github.actor }} opened PR #${{ github.event.number }} ${{ github.event.pull_request.title }} - ${{ github.event.pull_request.html_url }}
- name: irc issue created
uses: rectalogic/notify-irc@v1
if: github.event_name == 'issues'
with:
server: irc.blafasel.de
channel: "#iridium"
nickname: GitHub
notice: true
message: |
${{ github.actor }} opened issue #${{ github.event.issue.number }} ${{ github.event.issue.title }} - ${{ github.event.issue.html_url }}