-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathconfig-development.toml
More file actions
66 lines (56 loc) · 2.09 KB
/
config-development.toml
File metadata and controls
66 lines (56 loc) · 2.09 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[pulse]
# Those parameters can be overriden by PULSE_* environment variables
host = "pulse.mozilla.org"
port = 5671
ssl = true
userid = "SET THIS IN PULSE_USERID ENV VARIABLE"
password = "SET THIS IN PULSE_PASSWORD ENV VARIABLE"
# The exchange is declared by the Producer.
exchange = "exchange/landodev/pushes"
routing_key = "gitpushes"
# The Consumer declares the queue and binds it to the exchange.
heartbeat = 30
queue = "queue/githgsyncdev/pushes"
[sentry]
sentry_dsn = ""
[clones]
directory = "/clones"
[[tracked_repositories]]
name = "ff-test"
url = "https://github.com/mozilla-conduit/ff-test.git"
[[branch_mappings]]
source_url = "https://github.com/mozilla-conduit/ff-test.git"
branch_pattern = "dev"
destination_url = "ssh://hg.mozilla.org/conduit-testing/ff-test-dev"
destination_branch = "default"
#
# relbranches
#
[[branch_mappings]]
source_url = "https://github.com/mozilla-conduit/ff-test.git"
# <M>_<m>_X RELBRANCH to mozilla-release matching branch
branch_pattern = "^((FIREFOX|DEVEDITION|FIREFOX-ANDROID)_ESR_(\\d+)(_\\d+_X)_RELBRANCH)$"
destination_url = "ssh://hg.mozilla.org/conduit-testing/ff-test-dev"
destination_branch = "\\1"
[[tag_mappings]]
source_url = "https://github.com/mozilla-conduit/ff-test.git"
tag_pattern = "^(FIREFOX|DEVEDITION|FIREFOX-ANDROID)_.*$"
destination_url = "ssh://hg.mozilla.org/conduit-testing/ff-test-dev"
tags_destination_branch = "tags-unified-1973880"
# Default
#tag_message_suffix = "a=tagging CLOSED TREE DONTBUILD"
[[tracked_repositories]]
name = "test-repo-github"
url = "https://github.com/mozilla-conduit/test-repo.git"
[[branch_mappings]]
source_url = "https://github.com/mozilla-conduit/test-repo.git"
branch_pattern = "dev"
destination_url = "ssh://hg.mozilla.org/conduit-testing/test-repo-github-dev"
destination_branch = "default"
[[tag_mappings]]
source_url = "https://github.com/mozilla-conduit/test-repo.git"
tag_pattern = "^(DEV)_(BETA|NIGHTLY)_(\\d+)_(BASE|END)$"
destination_url = "ssh://hg.mozilla.org/conduit-testing/test-repo-github-dev"
tags_destination_branch = "tags-unified-1973880"
# Default
#tag_message_suffix = "a=tagging CLOSED TREE DONTBUILD"