@cryptotaxi247 / kubo / commits / 9b5fe5829

Fix automatic labels in issue templates

Label list should be a comma seperated string instead of a yaml array

Andrew Nesbitt committed Jul 12, 2019 at 15:22 UTC 9b5fe58291d480120846d9f95c1561a5e8d9781f
5 files changed +5 -11
.github/ISSUE_TEMPLATE/bug-report.md
+1 -2
@@ -1,8 +1,7 @@
1 ---
2 name: 'Bug Report'
3 about: 'Report a bug in go-ipfs.'
4 -labels:
5 - - bug
4 +labels: bug
5 ---
6
7 #### Version information:
.github/ISSUE_TEMPLATE/doc.md
+1 -2
@@ -1,8 +1,7 @@
1 ---
2 name: 'Documentation Issue'
3 about: 'Report missing/erroneous documentation, propose new documentation, report broken links, etc.'
4 -labels:
5 - - documentation
4 +labels: documentation
5 ---
6
7 #### Location
.github/ISSUE_TEMPLATE/enhancement.md
+1 -2
@@ -1,8 +1,7 @@
1 ---
2 name: 'Enhancement'
3 about: 'Suggest an improvement to an existing go-ipfs feature.'
4 -labels:
5 - - enhancement
4 +labels: enhancement
5 ---
6
7 <!--
.github/ISSUE_TEMPLATE/feature.md
+1 -2
@@ -1,8 +1,7 @@
1 ---
2 name: 'Feature'
3 about: 'Suggest a new feature in go-ipfs.'
4 -labels:
5 - - feature
4 +labels: feature
5 ---
6
7 <!--
.github/ISSUE_TEMPLATE/question.md
+1 -3
@@ -1,9 +1,7 @@
1 ---
2 name: 'Question/Support'
3 about: 'Ask a question about go-ipfs or request support.'
4 -labels:
5 - - question
6 - - invalid
4 +labels: question, invalid
5 ---
6
7 This bug tracker is only for actionable bug reports and feature requests. Please direct any questions to https://discuss.ipfs.io or to our Matrix (#ipfs:matrix.org) or IRC (#ipfs on freenode) channels.