Fix automatic labels in issue templates

Label list should be a comma seperated string instead of a yaml array
This commit is contained in:
Andrew Nesbitt 2019-07-12 15:22:22 +01:00
parent cd2611db37
commit 9b5fe58291
5 changed files with 5 additions and 11 deletions

View File

@ -1,8 +1,7 @@
---
name: 'Bug Report'
about: 'Report a bug in go-ipfs.'
labels:
- bug
labels: bug
---
#### Version information:

View File

@ -1,8 +1,7 @@
---
name: 'Documentation Issue'
about: 'Report missing/erroneous documentation, propose new documentation, report broken links, etc.'
labels:
- documentation
labels: documentation
---
#### Location

View File

@ -1,8 +1,7 @@
---
name: 'Enhancement'
about: 'Suggest an improvement to an existing go-ipfs feature.'
labels:
- enhancement
labels: enhancement
---
<!--

View File

@ -1,8 +1,7 @@
---
name: 'Feature'
about: 'Suggest a new feature in go-ipfs.'
labels:
- feature
labels: feature
---
<!--

View File

@ -1,9 +1,7 @@
---
name: 'Question/Support'
about: 'Ask a question about go-ipfs or request support.'
labels:
- question
- invalid
labels: question, invalid
---
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.