08f80fe7f6
To make it clear this is only for IRC, nothing else. Change-Id: I559d5471cb5d1cc97d4e302d1e7dab203289d09f
15 lines
458 B
YAML
15 lines
458 B
YAML
name: "IRC Notification"
|
|
on: [push]
|
|
|
|
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) }}
|