diff --git a/_config.yml b/_config.yml
index e62973df..86529067 100644
--- a/_config.yml
+++ b/_config.yml
@@ -34,7 +34,7 @@ collections:
jekyll_get_json:
- data: libraries
- json: 'https://adafruit-circuit-python.s3.amazonaws.com/adabot/web/libraries.json'
+ json: 'https://adafruit-circuit-python.s3.amazonaws.com/adabot/web/libraries.v2.json'
### Exclude from processing.
exclude:
diff --git a/libraries/contributing.html b/libraries/contributing.html
index c988c8b8..cd9cfcc1 100644
--- a/libraries/contributing.html
+++ b/libraries/contributing.html
@@ -48,16 +48,34 @@ permalink: /libraries/contributing
-
Open Issues
-
+ {% comment %}
+ create labels array by looping through labels of each issue
+ ensuring unique for select list
+ {% endcomment %}
+ {% assign labels = "" | split: "," %}
+ {% for library in site.data.libraries.open_issues %}
+ {% for issue in library[1] %}
+ {% for label in issue.labels %}
+ {% if label == "None" %}
+ {% continue %}
+ {% endif %}
+ {% assign labels = labels | push: label | uniq %}
+ {% endfor %}
+ {% endfor %}
+ {% endfor %}
+
+
+