circuitpython-org/contributing/pull_requests.html
2019-10-21 16:10:26 -05:00

26 lines
629 B
HTML

---
layout: contributing
title: Contributing - Pull Requests
permalink: /contributing
---
<p>
This is the current status of open pull requests and issues across all of the library repos.
</p>
<div class="libraries open-pull-requests">
<h3>Open Pull Requests</h3>
<ul>
{% for library in site.data.libraries.pull_requests %}
<li>
{{library[0]}}
<ul>
{% for issue in library[1] %}
{% for details in issue %}
<li><a href="{{ details[0] }}">{{ details[1] }}</a></li>
{% endfor %}
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
</div>