File tree Expand file tree Collapse file tree
utils/management/commands Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,7 +23,10 @@ class CommitMap(BaseModel):
2323
2424 # The TRY_REPO_MAPPING is used to determine which repository to use for
2525 # inspecting relevant CommitMap for a Try repository.
26- TRY_REPO_MAPPING = {"try" : "firefox" }
26+ TRY_REPO_MAPPING = {
27+ "try" : "firefox" ,
28+ "try-comm-central" : "thunderbird-desktop" ,
29+ }
2730
2831 git_hash = models .CharField (default = "" , max_length = 40 )
2932 hg_hash = models .CharField (default = "" , max_length = 40 )
Original file line number Diff line number Diff line change 193193 "is_phabricator_repo" : False ,
194194 "force_push" : True ,
195195 },
196+ {
197+ "name" : "try-comm-central" ,
198+ "url" : "https://hg.mozilla.org/try-comm-central" ,
199+ "push_path" : "ssh://hg.mozilla.org/try-comm-central" ,
200+ "pull_path" : "https://hg.mozilla.org/comm-unified" ,
201+ "required_permission" : SCM_LEVEL_1 ,
202+ "short_name" : "try-cc" ,
203+ "is_phabricator_repo" : False ,
204+ "force_push" : True ,
205+ },
196206 ],
197207 Environment .production : [],
198208}
You can’t perform that action at this time.
0 commit comments