-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
98 lines (98 loc) · 3.69 KB
/
index.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
<html lang="en">
<head>
<title>workflows</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<a href="https://github.com/dstein64/workflows">
<img id="forkme" src="forkme_right_white_ffffff.png" alt="Fork me on GitHub">
</a>
<h1>workflows</h1>
<details>
<summary><span class="summary">Instructions</span></summary>
<p>
To view workflows for a user's public repositories, enter the corresponding <em>user</em>.
No scopes are necessary if using a token.
</p>
<p>
To view workflows for public and private repositories 1) you own, 2) where you're a
collaborator, or 3) you can access through an organization membership, leave the
<em>user</em> field blank, and enter an account <em>token</em> that has <em>repo</em>
scope.
</p>
<p>
When a token is specified—either with or without a <em>user</em> entered—authenticated
requests are made to GitHub's API, which permits a higher
<a href="https://developer.github.com/v3/#rate-limiting">rate limit</a>.
</p>
<p>
See GitHub's <a
href="https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token">
documentation</a> for instructions on generating a token.
</p>
</details>
<br>
<form id="options_form">
<fieldset id="fieldset">
<table id="options_table">
<tbody>
<tr>
<td><label for="token">token</label></td>
<td>
<input type="password" id="token" size="44" spellcheck="false">
<input type="checkbox" id="show"><label for="show">show</label>
</td>
</tr>
<tr>
<td><label for="user">user</label></td>
<td>
<input type="text" id="user" size="24" spellcheck="false">
</td>
</tr>
<tr>
<td>
<a class="tooltip">
connections
<span>
The maximum number of concurrent connections for GitHub API calls.
</span>
</a>
</td>
<td>
<select id="connections">
<option selected="selected">1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
</select>
</td>
</tr>
<tr>
<td>
<a class="tooltip">
default<br>branch
<span>
Shows information for the latest workflow run on the default branch.
Otherwise, information is shown for the latest workflow run on any branch.
</span>
</a>
</td>
<td>
<input id="default_branch" type="checkbox" checked>
</td>
</tr>
</tbody>
</table>
<br>
<button id="submit_button" type="submit">Submit</button>
<button id="cancel_button">Cancel</button>
</fieldset>
</form>
<progress id="progress"></progress>
<div id="results"></div>
<script src="main.js"></script>
</body>
</html>