Skip to content

Commit

Permalink
Update notify-irc.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
zordsdavini committed Apr 30, 2020
1 parent 4effd5d commit 1e3a78f
Showing 1 changed file with 41 additions and 2 deletions.
43 changes: 41 additions & 2 deletions .github/workflows/notify-irc.yml
@@ -1,2 +1,41 @@
- name: Notify IRC
uses: rectalogic/notify-irc@v1
name: Notify IRC
on: [push, pull_request, create]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: irc push
uses: rectalogic/notify-irc@v1
if: github.event_name == 'push'
with:
server: irc.oftc.net
port: 6697
tls: true
channel: "#qtile"
nickname: qtile-github-notifier
message: |
${{ github.actor }} pushed ${{ github.event.ref }} ${{ github.event.compare }}
${{ join(github.event.commits.*.message) }}
- name: irc pull request
uses: rectalogic/notify-irc@v1
if: github.event_name == 'pull_request'
with:
server: irc.oftc.net
port: 6697
tls: true
channel: "#qtile"
nickname: qtile-github-notifier
message: |
${{ github.actor }} opened PR ${{ github.event.html_url }}
- name: irc tag created
uses: rectalogic/notify-irc@v1
if: github.event_name == 'create' && github.event.ref_type == 'tag'
with:
server: irc.oftc.net
port: 6697
tls: true
channel: "#qtile"
nickname: qtile-github-notifier
message: |
${{ github.actor }} tagged ${{ github.repository }} ${{ github.event.ref }}

0 comments on commit 1e3a78f

Please sign in to comment.