-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
85 lines (78 loc) · 2.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub Copilot License Management Solution</title>
<style>
body, h1, h2, p, ul, li {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #f2f2f2;
color: #333;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
padding: 20px;
}
h1 {
font-size: 36px;
margin-bottom: 20px;
text-align: center;
}
p {
font-size: 18px;
margin-bottom: 10px;
text-align: center;
}
ul {
list-style-type: disc;
margin-bottom: 20px;
text-align: left;
}
li {
margin-bottom: 10px;
font-size: 18px;
}
section {
margin-bottom: 20px;
text-align: center;
}
.footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
}
</style>
</head>
<body>
<h1>GitHub Copilot License Management</h1>
<p>
The main goal of this solution is to automate the process of assigning or removing GitHub Copilot licenses. Instead of manually managing licenses, the organization can leverage a self-service solution to simply let the users open an issue using the provided issue templates.
</p>
<p>
The workflow will automatically assign or remove the license to them, when the user opens an issue to request a license they are committing to use GitHub Copilot.
</p>
<h2>Features</h2>
<ul>
<li>Automatically assign or remove a GitHub Copilot License in your GitHub organization.</li>
<li>(Optional) Add an approval process to the requests.</li>
</ul>
<h2><a href="https://github.com/microsoft/GitHubCopilotLicenseAssignment" target="_blank" rel="noopener">Check out the solution here.</a></h2>
<a href="https://github.com/features/copilot" target="_blank" rel="noopener"><img src="images/GitHubCopilot.png" alt="GitHub Copilot"></a>
<div class="footer">
<p>© 2024 - GitHub Copilot License Management. All rights reserved.</p>
</div>
</body>
</html>