This repository has been archived by the owner on Jun 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.config
88 lines (88 loc) · 3.5 KB
/
App.config
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<sectionGroup name="common">
<section name="logging" type="Common.Logging.ConfigurationSectionHandler, Common.Logging" />
</sectionGroup>
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/>
<section name="castle" type="Castle.Windsor.Configuration.AppDomain.CastleSectionHandler, Castle.Windsor" />
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<common>
<logging>
<factoryAdapter type="Common.Logging.NLog.NLogLoggerFactoryAdapter, Common.Logging.NLog32">
<arg key="configType" value="FILE" />
<arg key="configFile" value="~/nlog.config"/>
</factoryAdapter>
</logging>
</common>
<castle>
<components>
<component id="hostSettings">
<parameters>
<BaseAddress>http://*:4486/merger</BaseAddress>
</parameters>
</component>
<component id="jiraSettings">
<parameters>
<ValidTransitions>
<array>
<!-- "701" is transition from "Resolved" to "Closed" -->
<item>701</item>
</array>
</ValidTransitions>
<ValidResolutions>
<array>
<!-- "1" is "Fixed" -->
<item>1</item>
</array>
</ValidResolutions>
<ClosedStatus>
<array>
<!-- "6" is "Closed" -->
<item>6</item>
</array>
</ClosedStatus>
<!--
allow opt-out from the automerge by setting a custom field on the issue.
FieldName is the name the field gets in a REST request; which is usually "customfield_" + id.
FieldValue is the actual value that needs to be set to opt-out. For Checkbox Fields, this is the string (not the internal value id).
-->
<DisableAutomergeFieldName>customfield_10103</DisableAutomergeFieldName>
<DisableAutomergeFieldValue>Disable</DisableAutomergeFieldValue>
<!-- allows the assignee to specify a different branch name than the default issue key -->
<BranchFieldName>customfield_10105</BranchFieldName>
<!-- allows the assignee to specify a different upstream branch than the default "master" -->
<UpstreamBranchFieldName>customfield_10101</UpstreamBranchFieldName>
<BaseUrl>http://jira.host.tld/</BaseUrl>
<UserName>srv</UserName>
<Password>srv</Password>
</parameters>
</component>
<component id="gitSettings">
<parameters>
<GitExecutable>C:\Program Files (x86)\Git\cmd\git.exe</GitExecutable>
<UserName>Git Automerger</UserName>
<EMail>[email protected]</EMail>
<!--
how long should the merger wait before processing a request?
should mitigate accidental triggering if someone closes and then reopens an issue.
-->
<MergeDelay>00:05:00</MergeDelay>
<RepositoryBasePath>d:\_dev\GitMerger\Repositories</RepositoryBasePath>
<Repositories>
<array>
<item>
<uri>[email protected]:BhaaLseN/GitMerger</uri>
</item>
</array>
</Repositories>
<!-- ignore branches mattern the following pattern -->
<IgnoredBranchPattern>^private/|^review/|^test(?:ing)?/</IgnoredBranchPattern>
</parameters>
</component>
</components>
</castle>
</configuration>