-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.5 KB
/
Copy pathindex.html
File metadata and controls
38 lines (38 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random GitHub Issue</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="button-container">
<input type="text" id="repo-input" list="repo-history" placeholder="Enter repository (e.g., owner/repo)">
<datalist id="repo-history">
<!-- Options will be added by JavaScript -->
</datalist>
<span id="status-fields">
<span id="total-count">Total: 0</span>
<span id="prs-count" class="toggle-button" data-type="prs">PRs: 0</span>
<span id="unmerged-count">Unmerged: 0</span>
<span id="issues-count" class="toggle-button" data-type="issues">Issues: 0</span>
<span id="open-issues-count">Open: 0</span>
<span id="stale-count">Stale: 0</span>
</span>
<span id="button-group">
<button id="fetch-issue"><span class="dice">🎲</span></button>
<button id="clear-output">Clear</button>
</span>
</div>
<div id="terminal">
<div id="terminal-header">
<button id="test-mode" class="test-mode-btn">🧪</button>
<span id="build-status">Build: Unknown</span>
</div>
<div id="output"></div>
</div>
<span id="build-time" data-build-time="2026-05-08T23:21:41.000Z" style="display: none;"></span>
<script src="dist/script.js"></script>
</body>
</html>