Files
zulip/zerver/webhooks/buildbot/doc.md
Mateusz Mandera 87007df8eb webhooks: Rename remaining stream references to channel.
Note: This doesn't change the occurences in the Zapier integration doc,
since they refer to pieces of the UI in Zapier, which may still be using
the "Stream" terminology.
2024-05-06 09:07:57 -07:00

928 B

Get Zulip notifications for your Buildbot builds!

!!! tip ""

This integration requires Buildbot version 2.2.0 or higher.
  1. {!create-channel.md!}

  2. {!create-an-incoming-webhook.md!}

  3. Edit the Buildbot configuration file to add a new Zulip reporter (or follow the steps listed here):

     from buildbot.plugins import reporters
    
     zs = reporters.ZulipStatusPush('{{ zulip_url }}',
                                    token='api_key',
                                    stream='{{ recommended_channel_name }}')
     c['services'].append(zs)
    

    When adding the new reporter, modify the code above such that api_key is the API key of your Zulip bot, and stream is set to the channel name you want the notifications sent to.

{!congrats.md!}