diff options
| author | Patrick Uiterwijk <puiterwijk@redhat.com> | 2015-12-01 15:24:17 +0000 |
|---|---|---|
| committer | Patrick Uiterwijk <puiterwijk@redhat.com> | 2015-12-01 15:24:17 +0000 |
| commit | e5a8a1ec5269b91e6c23d2e2bab68c0a5d05386d (patch) | |
| tree | aab5ed0e941ae031a3910ea94011d8b1bbce928d /roles/fedmsg/irc | |
| parent | aac2835727ee3c1181beb51b28d031d195dc7c79 (diff) | |
| download | ansible-e5a8a1ec5269b91e6c23d2e2bab68c0a5d05386d.tar.gz ansible-e5a8a1ec5269b91e6c23d2e2bab68c0a5d05386d.tar.xz ansible-e5a8a1ec5269b91e6c23d2e2bab68c0a5d05386d.zip | |
Ipsilon people want IRC notifications as well
Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
Diffstat (limited to 'roles/fedmsg/irc')
| -rw-r--r-- | roles/fedmsg/irc/templates/ircbot.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/roles/fedmsg/irc/templates/ircbot.py b/roles/fedmsg/irc/templates/ircbot.py index 1c66e041f..7b8ce5d6a 100644 --- a/roles/fedmsg/irc/templates/ircbot.py +++ b/roles/fedmsg/irc/templates/ircbot.py @@ -216,6 +216,26 @@ config = dict( ), ), + # And #ipsilon + dict( + network='chat.freenode.net', + port=6667, + make_pretty=True, + make_terse=True, + + {% if env == 'staging' %} + nickname='ipsilon-bot-stg', + {% else %} + nickname='ipsilon-bot', + {% endif %} + channel='#ipsilon', + # If the word ipsilon appears in any message, forward it. + filters=dict( + body=['^((?!ipsilon).)*$'], + ), + ), + + # Hook up the design-team with badges messages dict( network='chat.freenode.net', |
