a67a10d7e9
Change-Id: Id96e62f99ac6727a9992172d1365d35ad735f493
15 lines
481 B
YAML
15 lines
481 B
YAML
name: "Push Notification"
|
|
on: [push, pull_request, create]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: irc push
|
|
uses: vmiklos/notify-irc@a52a197c9507ad7a81c1a9295c9ed24786e396b3
|
|
if: github.event_name == 'push' && github.event.ref == 'refs/heads/master' && github.repository == 'CollaboraOnline/online'
|
|
with:
|
|
channel: "#cool-dev"
|
|
nickname: github-online
|
|
message: |
|
|
${{ toJson(github.event) }}
|