-
Notifications
You must be signed in to change notification settings - Fork 16
/
maintainers.html
67 lines (65 loc) · 2.98 KB
/
maintainers.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
---
layout: simple-page
title: RIOT Maintainers
subtitle: Our maintainers help RIOT to grow and improve.
---
<main>
<!-- ======= Maintainers Section ======= -->
<section id="maintainers">
<div class="container">
<p>
The RIOT community is supported by the following maintainers.
If a maintainer has expertise in certain parts of the
<a href="https://github.com/RIOT-OS/RIOT" target="_blank">RIOT codebase</a> and has declared
this within
<a href="https://github.com/RIOT-OS/RIOT/blob/master/CODEOWNERS" target="_blank">CODEOWNERS</a>,
this is explicitly noted.
</p>
<p id="maintainer-list">
<div class="row row-cols-1 row-cols-lg-3 row-cols-md-2 row-cols g-4"
data-masonry='{"percentPosition": true }'>
{% assign maintainer_by_login = site.data.riot_maintainers | sort_natural: "login" %}
{% for maintainer in maintainer_by_login %}
<div class="col">
<div class="card shadow rounded w-100">
<div class="card-body">
<h5 class="card-title text-truncate">
<a href="{{ maintainer.html_url }}" target="_blank"><img class="maintainers-img" src="{{ maintainer.avatar_url }}" alt="{{ maintainer.login }} avatar" /></a>
<a href="{{ maintainer.html_url }}" target="_blank">
@{{ maintainer.login }}
{% if maintainer.name and maintainer.name != maintainer.login %}<small class="text-muted align-middle"> | {{ maintainer.name }}</small>{% endif %}
</a>
</h5>
<ul>
{% if maintainer.owner %}
<li><strong>Is one of the GitHub owners of RIOT</strong></li>
{% endif %}
{% if maintainer.admin %}
<li><strong>Is one of the GitHub admins of RIOT</strong></li>
{% endif %}
{% for area in maintainer.areas %}
<li><tt>{{ area }}</tt></li>
{% endfor %}</ul>
</div>
</div>
</div>
{% endfor %}
</div>
</p>
<p>
This list is generated by combining the information from the maintainers, owners, and
admin teams from the
<a href="https://github.com/RIOT-OS" target="_blank">RIOT GitHub organization</a> and the
<a href="https://github.com/RIOT-OS/RIOT/blob/master/CODEOWNERS" target="_blank">
<tt>CODEOWNERS</tt>
</a> file within the RIOT repository.
</p>
<p>
If you are a maintainer and want to declare ownership for a part of a code base (and
receive notifications on pull requests against it), please add yourself and the path pattern to the
part of the code base you want to be responsible for to
<a href="https://github.com/RIOT-OS/RIOT/blob/master/CODEOWNERS" target="_blank">CODEOWNERS</a>,
and issue a pull request.
</p>
</section><!-- End Board Section -->
</main><!-- End #main -->