Skip to content

Commit 24243cb

Browse files
Deploy milestone reports to GitHub Pages 881a7cc
0 parents  commit 24243cb

File tree

7 files changed

+1547
-0
lines changed

7 files changed

+1547
-0
lines changed

.nojekyll

Whitespace-only changes.

index.html

Lines changed: 170 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,170 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>WebTop Milestones Report</title>
7+
<link rel="icon" href="static/favicon.svg">
8+
<style>
9+
* {
10+
margin: 0;
11+
padding: 0;
12+
box-sizing: border-box;
13+
}
14+
15+
body {
16+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
17+
line-height: 1.6;
18+
color: #333;
19+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
20+
min-height: 100vh;
21+
padding: 20px;
22+
}
23+
24+
.container {
25+
max-width: 1200px;
26+
margin: 0 auto;
27+
}
28+
29+
header {
30+
text-align: center;
31+
color: white;
32+
margin-bottom: 40px;
33+
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
34+
}
35+
36+
h1 {
37+
font-size: 2.5em;
38+
margin-bottom: 10px;
39+
}
40+
41+
.milestone-card {
42+
background: white;
43+
border-radius: 8px;
44+
padding: 20px;
45+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
46+
transition: transform 0.2s, box-shadow 0.2s;
47+
margin: 10px;
48+
}
49+
50+
.epic-link {
51+
margin-top: 8px;
52+
font-size: 0.9em;
53+
color: #555;
54+
}
55+
56+
.epic-link a {
57+
color: #764ba2;
58+
text-decoration: none;
59+
font-weight: 600;
60+
}
61+
.milestone-card:hover {
62+
transform: translateY(-4px);
63+
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
64+
}
65+
66+
.milestone-card h3 {
67+
color: #667eea;
68+
margin-bottom: 10px;
69+
font-size: 1.3em;
70+
}
71+
72+
.milestone-link {
73+
display: inline-block;
74+
padding: 8px 16px;
75+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
76+
color: white;
77+
text-decoration: none;
78+
border-radius: 4px;
79+
transition: opacity 0.2s;
80+
float: right;
81+
}
82+
83+
.milestone-link:hover {
84+
opacity: 0.9;
85+
}
86+
87+
footer {
88+
text-align: center;
89+
color: rgba(255, 255, 255, 0.8);
90+
margin-top: 40px;
91+
font-size: 0.9em;
92+
}
93+
</style>
94+
</head>
95+
<body>
96+
<div class="container">
97+
<header>
98+
<h1>WebTop Milestones Report</h1>
99+
<p class="subtitle">Open Milestones</p>
100+
</header>
101+
102+
<div class="milestones-grid">
103+
<div class="milestone-card">
104+
<h3>Milestone 2</h3>
105+
<p class="milestone-description">
106+
107+
</p>
108+
<div class="milestone-meta">
109+
<span class="issue-count">Issues: 21</span>
110+
</div>
111+
<p class="epic-link">
112+
<a href="https://sonicle.atlassian.net/browse/WT-1421" target="_blank">Epic WT-1421</a>
113+
</p>
114+
<a href="milestone-WT-1421.html" class="milestone-link">
115+
View Details
116+
</a>
117+
</div>
118+
<div class="milestone-card">
119+
<h3>Lost & Found</h3>
120+
<p class="milestone-description">
121+
122+
</p>
123+
<div class="milestone-meta">
124+
<span class="issue-count">Issues: 14</span>
125+
</div>
126+
<p class="epic-link">
127+
<a href="https://sonicle.atlassian.net/browse/WT-1219" target="_blank">Epic WT-1219</a>
128+
</p>
129+
<a href="milestone-WT-1219.html" class="milestone-link">
130+
View Details
131+
</a>
132+
</div>
133+
<div class="milestone-card">
134+
<h3>New Ideas</h3>
135+
<p class="milestone-description">
136+
137+
</p>
138+
<div class="milestone-meta">
139+
<span class="issue-count">Issues: 4</span>
140+
</div>
141+
<p class="epic-link">
142+
<a href="https://sonicle.atlassian.net/browse/WT-1217" target="_blank">Epic WT-1217</a>
143+
</p>
144+
<a href="milestone-WT-1217.html" class="milestone-link">
145+
View Details
146+
</a>
147+
</div>
148+
<div class="milestone-card">
149+
<h3>To Plan</h3>
150+
<p class="milestone-description">
151+
152+
</p>
153+
<div class="milestone-meta">
154+
<span class="issue-count">Issues: 50</span>
155+
</div>
156+
<p class="epic-link">
157+
<a href="https://sonicle.atlassian.net/browse/WT-706" target="_blank">Epic WT-706</a>
158+
</p>
159+
<a href="milestone-WT-706.html" class="milestone-link">
160+
View Details
161+
</a>
162+
</div>
163+
</div>
164+
165+
<footer>
166+
<p>Generated by Jira Milestone Reporter on 2025-11-14 15:06:03</p>
167+
</footer>
168+
</div>
169+
</body>
170+
</html>

milestone-WT-1217.html

Lines changed: 173 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,173 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>New Ideas - WebTop Milestones Report</title>
7+
<link rel="icon" href="static/favicon.svg">
8+
<style>
9+
* {
10+
margin: 0;
11+
padding: 0;
12+
box-sizing: border-box;
13+
}
14+
15+
body {
16+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
17+
line-height: 1.6;
18+
color: #333;
19+
background: #f5f5f5;
20+
padding: 20px;
21+
}
22+
23+
.container {
24+
max-width: 1400px;
25+
margin: 0 auto;
26+
background: white;
27+
border-radius: 8px;
28+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
29+
padding: 30px;
30+
}
31+
32+
header {
33+
margin-bottom: 30px;
34+
border-bottom: 2px solid #667eea;
35+
padding-bottom: 20px;
36+
}
37+
38+
h1 {
39+
color: #667eea;
40+
margin-bottom: 5px;
41+
}
42+
43+
.breadcrumb {
44+
color: #999;
45+
font-size: 0.9em;
46+
margin-top: 10px;
47+
}
48+
49+
.breadcrumb a {
50+
color: #667eea;
51+
text-decoration: none;
52+
}
53+
54+
.issues-table {
55+
width: 100%;
56+
border-collapse: collapse;
57+
}
58+
59+
.issues-table th {
60+
text-align: left;
61+
padding: 12px;
62+
font-weight: 600;
63+
color: #667eea;
64+
font-size: 0.9em;
65+
}
66+
67+
.issues-table td {
68+
padding: 12px;
69+
border-bottom: 1px solid #eee;
70+
}
71+
72+
.issues-table a {
73+
color: #667eea;
74+
text-decoration: none;
75+
}
76+
77+
.status {
78+
display: inline-block;
79+
padding: 4px 8px;
80+
border-radius: 4px;
81+
font-size: 0.85em;
82+
font-weight: 600;
83+
}
84+
85+
.status-green {
86+
background: #d4edda;
87+
color: #155724;
88+
}
89+
90+
.status-orange {
91+
background: #fff3cd;
92+
color: #856404;
93+
}
94+
95+
.status-gray {
96+
background: #e9ecef;
97+
color: #383d41;
98+
}
99+
100+
footer {
101+
margin-top: 40px;
102+
padding-top: 20px;
103+
border-top: 1px solid #eee;
104+
text-align: center;
105+
color: #999;
106+
font-size: 0.9em;
107+
}
108+
</style>
109+
</head>
110+
<body>
111+
<div class="container">
112+
<header>
113+
<h1>New Ideas</h1>
114+
<div class="breadcrumb">
115+
<a href="index.html">Back to Milestones</a>
116+
</div>
117+
</header>
118+
119+
<h2 style="margin-bottom: 20px; color: #333;">Issues (4)</h2>
120+
121+
<table class="issues-table">
122+
<thead>
123+
<tr>
124+
<th>Issue Key</th>
125+
<th>Summary</th>
126+
<th>Status</th>
127+
<th>Start Date</th>
128+
<th>Due Date</th>
129+
<th>Assignee</th>
130+
</tr>
131+
</thead>
132+
<tbody>
133+
<tr>
134+
<td><a href="https://sonicle.atlassian.net/browse/WT-1228" target="_blank">WT-1228</a></td>
135+
<td>Modern interface for mobile</td>
136+
<td><span class="status status-gray">To Do</span></td>
137+
<td>-</td>
138+
<td>-</td>
139+
<td>Unassigned</td>
140+
</tr>
141+
<tr>
142+
<td><a href="https://sonicle.atlassian.net/browse/WT-1227" target="_blank">WT-1227</a></td>
143+
<td>PEC Bridge integration and new implementation</td>
144+
<td><span class="status status-gray">To Do</span></td>
145+
<td>-</td>
146+
<td>-</td>
147+
<td>Unassigned</td>
148+
</tr>
149+
<tr>
150+
<td><a href="https://sonicle.atlassian.net/browse/WT-737" target="_blank">WT-737</a></td>
151+
<td>New passwords and resources management service (keypass)</td>
152+
<td><span class="status status-gray">To Do</span></td>
153+
<td>-</td>
154+
<td>-</td>
155+
<td>Unassigned</td>
156+
</tr>
157+
<tr>
158+
<td><a href="https://sonicle.atlassian.net/browse/WT-736" target="_blank">WT-736</a></td>
159+
<td>New Notes service like Google Keep / Post-it</td>
160+
<td><span class="status status-gray">To Do</span></td>
161+
<td>-</td>
162+
<td>-</td>
163+
<td>Unassigned</td>
164+
</tr>
165+
</tbody>
166+
</table>
167+
168+
<footer>
169+
<p>Generated by Jira Milestone Reporter on 2025-11-14 15:06:02</p>
170+
</footer>
171+
</div>
172+
</body>
173+
</html>

0 commit comments

Comments
 (0)