summaryrefslogtreecommitdiff
path: root/baserock_bots/config.js
blob: 5c8ea793eedeeb2f1d331bdf4459b33b9141f8c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
module.exports = {
    // IRC server to connect to.
    server: 'irc.gimp.org',

    // List of channels / people to report to.
    reports: {
        '#buildstream': ['push', 'merge_request', 'issue']
        // 'somebody': ['push', 'merge_request', 'issue', 'build']
    },

    // IRC nick/names for the bot
    nick: 'gitlab-bst',
    userName: 'gitlab-bst',
    realName: 'Gitlab Bot for BuildStream',

    // Secret as entered in the Gitlab Webhook instance.
    secret: '{{ gitlab_buildstream_secret }}',

    // Port on which to run.
    port: 1337,

    // Network interface on which to run the webhook server.
    hostname: '0.0.0.0',

    // Instance of lstu to shorten links -- keep empty to not use.
    //lstu: 'https://lstu.fr',

    // Whether the irc client debug messages should be printed.
    debug: true
}