-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathoptions.html
162 lines (157 loc) · 7.65 KB
/
options.html
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html>
<head>
<title>StashPop Options</title>
<style>
body: {
padding: 10px;
}
</style>
</head>
<body>
<div style="width:600px;">
<b>Email Options</b><br />
<label>
<input type="checkbox" id="emailIssuesList">
Issues list
</label>
<br />
<label>
<input type="checkbox" id="emailIssue">
Individual issue
</label>
<br />
<label>
<input type="checkbox" id="emailPullRequestList">
Pull request list
</label>
<br />
<label>
<input type="checkbox" id="emailPullRequest">
Individual pull request
</label>
<br /><br />
<b>Pull Request Options</b><br />
<label>
<input type="checkbox" id="jenkinsOpenDetailsLinksInNewTab">
Open "details" links in a new tab
</label>
<br />
<label>
<input type="checkbox" id="jenkinsShowRunTime">
Show test run time
</label>
<br />
<label>
<input type="checkbox" id="jenkinsShowFailureIndications">
Show failure indications on PR page
</label>
<br />
<label>
<input type="checkbox" id="jenkinsShowTestFailures">
And show structured test failures
</label>
<br />
<label>
<input type="checkbox" id="jenkinsShowBugFilingButton">
Show bug-filing button on failures
</label>
<br />
<label>
<input type="checkbox" id="jenkinsShowRetestButton">
Show retest button on failures
</label>
<br />
<label>
<input type="checkbox" id="jenkinsOfferInlineFailuresOnPRList">
Offer to inline test failures on PR lists
</label>
<br />
<label>
<input type="checkbox" id="showCodeReviewInfo">
Show code review information
</label>
<br /><br />
<label>
Code Review Options<br />
Examples:<br />
<i>Organization;Approved;Rejected;TestSignoff</i><br />
<i>Organization/Repo;Approval1,Approval2;Rejected1,Rejected2;TestSignoff1,TestSignoff2</i><br />
<i>Organization/Repo2;:+1:,:thumbsup:;:-1:;Test Signoff</i><br />
<i>Organization/RepoToIgnore;;;</i><br />
Configured options:<br />
<textarea id="codeReviewOptions" rows="5" cols="75"></textarea>
</label>
<br /><br />
<label>
Issue creation routing:<br />
Examples:<br />
<i>OrganizationA/RepoWithoutIssues:OrganizationB/RepoWithIssues</i><br />
Configured routes:<br />
<textarea id="issueCreationRouting" rows="5" cols="75"></textarea>
</label>
<br /><br />
<label>
Non-default test suites:<br />
Examples:<br />
<i>OrganizationA:NonDefaultTestA</i><br />
<i>OrganizationB/SpecificRepo:NonDefaultTestB</i><br />
<i>OrganizationB/SpecificRepo:NonDefaultTestC</i><br />
<i>OrganizationC/SpecificRepo:NonDefaultTestD:TestNameThatIndicatesTestDAlreadyRan</i><br />
Test suites:<br />
<textarea id="nonDefaultTestInfo" rows="5" cols="75"></textarea>
</label>
<br /><br />
<label>
Default labels when creating issues<br />
Examples:<br />
<i>OrganizationA:DefaultLabel1</i><br />
<i>OrganizationB/SpecificRepo:DefaultLabel1,DefaultLabel2</i><br />
Default labels:<br />
<textarea id="defaultIssueLabels" rows="5" cols="75"></textarea>
</label>
<br /><br />
<label>
Jenkins test rerunning text<br />
Examples:<br />
<i>*:retest {0} please</i><br />
<i>OrganizationA:retest {0} please</i><br />
<i>OrganizationB/SpecificRepo:please rerun tests</i><br />
Rerun text:<br />
<textarea id="testRerunText" rows="5" cols="75"></textarea>
</label>
<br /><br />
<label>
Host permissions:<br />
Examples:<br />
<i>https://jenkins-server/*</i><br />
Add new host:<br/>
<input id="addHostPermissionHostname"></input>
<button id="addHostPermission">Add</button><br>
<span id="addHostPermissionError" style="color: red"></span><br />
<textarea id="existingHostPermissions" rows="5" cols="75" disabled="true"></textarea>
</label>
<br /><br />
<br /><br />
<div id="status"></div>
<button id="save">Save</button>
</div>
<script src="options.js"></script>
</body>
</html>