-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
maintainers.html: Add list of maintainers (#141)
- Loading branch information
Showing
10 changed files
with
268 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 --> |