-
Notifications
You must be signed in to change notification settings - Fork 7
config: add config-production-thunderbird.toml (bug 2012575) #83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 1 commit
8fb65ba
4eefc99
df855bf
f9c3cfd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| [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/landoprod/pushes" | ||
| routing_key = "gitpushes" | ||
| # The Consumer declares the queue and binds it to the exchange. | ||
| heartbeat = 30 | ||
| queue = "queue/githgsyncprod/pushes" | ||
|
|
||
| [sentry] | ||
| sentry_dsn = "" | ||
|
|
||
| [clones] | ||
| directory = "/clones" | ||
|
|
||
| ############################# | ||
| # THUNDERBIRD-INFRA-TESTING # | ||
| ############################# | ||
|
|
||
| [[tracked_repositories]] | ||
| name = "thunderbird-infra-testing" | ||
| url = "https://github.com/thunderbird/infra-testing.git" | ||
|
|
||
| # | ||
| # COMM-UNIFIED | ||
| # | ||
| # We don't sync to this repository, but we put it here first to fetch all | ||
| # references early, with the benefit of bundles. | ||
| # | ||
| [[branch_mappings]] | ||
| source_url = "https://github.com/thunderbird/infra-testing.git" | ||
| branch_pattern = "THIS_SHOULD_MATCH_NOTHING" | ||
| destination_url = "https://hg.mozilla.org/comm-unified/" | ||
| destination_branch = "NOT_A_VALID_BRANCH" | ||
|
|
||
| [[branch_mappings]] | ||
| source_url = "https://github.com/thunderbird/infra-testing.git" | ||
| branch_pattern = "main" | ||
| destination_url = "ssh://hg.mozilla.org/conduit-testing/comm-infra-testing/" | ||
| destination_branch = "default" | ||
|
|
||
| [[tag_mappings]] | ||
| source_url = "https://github.com/thunderbird/infra-testing.git" | ||
| # (BETA|NIGHTLY)_(\d+)_(BASE|END) | ||
|
||
| tag_pattern = ".+" | ||
| destination_url = "ssh://hg.mozilla.org/conduit-testing/comm-infra-testing/" | ||
| tags_destination_branch = "tags-testing" | ||
| # Default | ||
| #tag_message_suffix = "a=tagging CLOSED TREE DONTBUILD" | ||
Uh oh!
There was an error while loading. Please reload this page.