-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatistics.html
More file actions
133 lines (107 loc) · 3.4 KB
/
statistics.html
File metadata and controls
133 lines (107 loc) · 3.4 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Statistics</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<h1>GitHub Statistics</h1>
<h2>Summary</h2>
<table>
<tr>
<th>Total PRs</th>
<th>Total Issues</th>
</tr>
<tr>
<td>4</td>
<td>5</td>
</tr>
</table>
<h2>Contributor Statistics</h2>
<table>
<tr>
<th>PRs Count</th>
<th>Issues Count</th>
</tr>
<tr>
<td>4</td>
<td>5</td>
</tr>
</table>
<h3>PRs:</h3>
<table>
<tr>
<th>Title</th>
<th>URL</th>
<th>Created At</th>
</tr>
<tr>
<td>feat: bscp增加模版套餐API</td>
<td><a href="https://github.com/TencentBlueKing/bk-bcs/pull/2262">https://github.com/TencentBlueKing/bk-bcs/pull/2262</a></td>
<td>2023-06-06T02:11:24Z</td>
</tr>
<tr>
<td>feat: bscp增加模版自身及其版本管理相关API</td>
<td><a href="https://github.com/TencentBlueKing/bk-bcs/pull/2246">https://github.com/TencentBlueKing/bk-bcs/pull/2246</a></td>
<td>2023-05-31T09:15:34Z</td>
</tr>
<tr>
<td>feat: bscp增加模版空间相关API</td>
<td><a href="https://github.com/TencentBlueKing/bk-bcs/pull/2194">https://github.com/TencentBlueKing/bk-bcs/pull/2194</a></td>
<td>2023-05-12T02:17:55Z</td>
</tr>
<tr>
<td>feat: add template db schema for bscp[db migration同时支持gorm和sql两种模式]</td>
<td><a href="https://github.com/TencentBlueKing/bk-bcs/pull/2193">https://github.com/TencentBlueKing/bk-bcs/pull/2193</a></td>
<td>2023-05-12T02:13:04Z</td>
</tr>
</table>
<h3>Issues:</h3>
<table>
<tr>
<th>Title</th>
<th>URL</th>
<th>Created At</th>
</tr>
<tr>
<td>feat: bscp增加模版套餐API</td>
<td><a href="https://github.com/TencentBlueKing/bk-bcs/pull/2262">https://github.com/TencentBlueKing/bk-bcs/pull/2262</a></td>
<td>2023-06-06T02:11:24Z</td>
</tr>
<tr>
<td>feat: bscp增加模版自身及其版本管理相关API</td>
<td><a href="https://github.com/TencentBlueKing/bk-bcs/pull/2246">https://github.com/TencentBlueKing/bk-bcs/pull/2246</a></td>
<td>2023-05-31T09:15:34Z</td>
</tr>
<tr>
<td>feat: bscp增加模版空间相关API</td>
<td><a href="https://github.com/TencentBlueKing/bk-bcs/pull/2194">https://github.com/TencentBlueKing/bk-bcs/pull/2194</a></td>
<td>2023-05-12T02:17:55Z</td>
</tr>
<tr>
<td>feat: add template db schema for bscp[db migration同时支持gorm和sql两种模式]</td>
<td><a href="https://github.com/TencentBlueKing/bk-bcs/pull/2193">https://github.com/TencentBlueKing/bk-bcs/pull/2193</a></td>
<td>2023-05-12T02:13:04Z</td>
</tr>
<tr>
<td>bscp增加配置模版功能</td>
<td><a href="https://github.com/TencentBlueKing/bk-bcs/issues/2192">https://github.com/TencentBlueKing/bk-bcs/issues/2192</a></td>
<td>2023-05-12T02:06:49Z</td>
</tr>
</table>
</body>
</html>