documentation.yml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. name: "Documentation Issue"
  2. description: "Report issues or suggest improvements for the documentation"
  3. title: "[Docs]: "
  4. type: "Documentation"
  5. labels: ["triage needed"]
  6. body:
  7. - type: markdown
  8. attributes:
  9. value: |
  10. Thanks for helping improve the Miniflux documentation! Clear and accurate documentation helps everyone.
  11. - type: dropdown
  12. id: issue_type
  13. attributes:
  14. label: "Documentation Issue Type"
  15. description: "What kind of documentation issue are you reporting?"
  16. options:
  17. - "Missing Information"
  18. - "Incorrect Information"
  19. - "Outdated Information"
  20. - "Unclear Explanation"
  21. - "Formatting/Structural Issue"
  22. - "Typo/Grammar Error"
  23. - "Documentation Request"
  24. - "Other"
  25. validations:
  26. required: true
  27. - type: input
  28. id: summary
  29. attributes:
  30. label: "Summary"
  31. description: "Briefly describe the documentation issue."
  32. placeholder: "e.g., The API authentication section is outdated"
  33. validations:
  34. required: true
  35. - type: input
  36. id: location
  37. attributes:
  38. label: "Location"
  39. description: "Where is the documentation you're referring to? Provide URLs, file paths, or section names."
  40. placeholder: "e.g., README.md, docs/api.md, Installation section of the website"
  41. validations:
  42. required: true
  43. - type: textarea
  44. id: description
  45. attributes:
  46. label: "Detailed Description"
  47. description: "Provide a detailed description of the issue or improvement."
  48. placeholder: "e.g., The API authentication section doesn't mention the new token-based authentication method introduced in version 2.0.5."
  49. validations:
  50. required: true
  51. - type: textarea
  52. id: current_content
  53. attributes:
  54. label: "Current Content (if applicable)"
  55. description: "What does the current documentation say?"
  56. placeholder: "Paste the current documentation text here."
  57. validations:
  58. required: false
  59. - type: textarea
  60. id: suggested_content
  61. attributes:
  62. label: "Suggested Changes"
  63. description: "If you have specific suggestions for how to improve the documentation, please provide them here."
  64. placeholder: "e.g., Add a new section about token-based authentication with these details..."
  65. validations:
  66. required: false
  67. - type: input
  68. id: version
  69. attributes:
  70. label: "Version"
  71. description: "Which version of Miniflux does this documentation issue relate to?"
  72. placeholder: "e.g., 2.2.6, or 'all versions'"
  73. validations:
  74. required: false