-
Notifications
You must be signed in to change notification settings - Fork 0
/
buggle.toml
42 lines (34 loc) · 1.01 KB
/
buggle.toml
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
31
32
33
34
35
36
37
38
39
40
41
42
# Buggle Configuration
#
# SPDX-FileCopyrightText: no
# SPDX-License-Identifier: CC0-1.0
# The queries all have a name, a kind (owner or product) and a string to match.
# These are translated into bugzilla queries for the to-be-matched owner
# or product. The name is used for display purposes.
[[queries]]
name = "me"
kind = "owner"
match = "adridg@FreeBSD.org"
[[queries]]
name = "cmake"
kind = "product"
match = "cmake"
[[queries]]
name = "desktop"
kind = "owner"
match = "desktop@FreeBSD.org"
[[queries]]
name = "kde"
kind = "owner"
match = "kde@FreeBSD.org"
# Authentication for social-media-posts. The keys are documented here,
# but you really **really** should put them in buggle-auth.toml, which
# is ignored in this repository and overrides the values here.
# This is the application key and secret; obtained from the developer portal.
[twitter-app]
key = "application-key"
secret = "application-secret"
# This is the user key and secret for the logged-in user.
[twitter-user]
key = "user-key"
secret = "user-secret"