feed_issue.yml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. name: "Feed/Website Issue"
  2. description: "Report problems with a specific feed or website"
  3. title: "[Feed Issue]: "
  4. type: "Feed Issue"
  5. labels: ["triage needed"]
  6. body:
  7. - type: markdown
  8. attributes:
  9. value: |
  10. Thanks for reporting an issue with a feed or website! Please provide detailed information to help us diagnose and resolve the problem.
  11. - type: input
  12. id: feed_url
  13. attributes:
  14. label: "Feed URL"
  15. description: "Provide the URL of the feed that is not working correctly."
  16. placeholder: "e.g., https://example.com/feed.xml"
  17. validations:
  18. required: true
  19. - type: input
  20. id: website_url
  21. attributes:
  22. label: "Website URL"
  23. description: "Provide the URL of the website."
  24. placeholder: "e.g., https://example.com"
  25. validations:
  26. required: true
  27. - type: textarea
  28. id: problem_description
  29. attributes:
  30. label: "Problem Description"
  31. description: "Describe the issue you are experiencing with this feed."
  32. placeholder: |
  33. e.g.,
  34. - The feed URL returns a 403 error.
  35. - The content is malformed.
  36. - Images are not loading in the web ui.
  37. validations:
  38. required: true
  39. - type: textarea
  40. id: expected_behavior
  41. attributes:
  42. label: "Expected Behavior"
  43. description: "Describe what you expect to happen."
  44. placeholder: "e.g., The feed should show the images correctly."
  45. validations:
  46. required: true
  47. - type: textarea
  48. id: error_logs
  49. attributes:
  50. label: "Relevant Logs or Error Output"
  51. description: "Paste any relevant logs or error messages, if available."
  52. render: shell
  53. placeholder: "e.g., HTTP error codes, invalid XML warnings, etc."
  54. validations:
  55. required: false
  56. - type: textarea
  57. id: additional_context
  58. attributes:
  59. label: "Additional Context"
  60. description: "Add any other context, screenshots, or related information to help us troubleshoot."
  61. placeholder: "e.g., Is this a recurring problem? Did the feed work before?"
  62. validations:
  63. required: false
  64. - type: checkboxes
  65. id: troubleshooting
  66. attributes:
  67. label: "Troubleshooting Steps"
  68. description: "Please confirm that you have tried the following:"
  69. options:
  70. - label: "I have checked if the feed URL is correct and accessible in a web browser."
  71. required: true
  72. - label: "I have checked if the feed URL is correct and accessible with `curl`."
  73. required: true
  74. - label: "I have verified that the feed is valid using an RSS/Atom validator."
  75. required: false
  76. - label: "I have searched for existing issues to avoid duplicates."
  77. required: true