| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- name: "Bug Report"
- description: "Report a bug or unexpected behavior"
- title: "[Bug]: "
- type: "Bug"
- labels: ["triage needed"]
- body:
- - type: markdown
- attributes:
- value: |
- Thanks for reporting a bug! Please provide detailed information to help us reproduce and fix the issue.
- - type: input
- id: summary
- attributes:
- label: "Bug Summary"
- description: "Briefly describe the bug."
- placeholder: "e.g., Error when saving a new entry"
- validations:
- required: true
- - type: textarea
- id: description
- attributes:
- label: "Description"
- description: "A clear and concise description of the bug."
- placeholder: "e.g., When I click 'Save', I get a 500 error."
- validations:
- required: true
- - type: textarea
- id: steps_to_reproduce
- attributes:
- label: "Steps to Reproduce"
- description: "Steps to reproduce the behavior."
- placeholder: |
- 1. Go to '...'
- 2. Click on '...'
- 3. Scroll down to '...'
- 4. See error
- validations:
- required: true
- - type: textarea
- id: expected_behavior
- attributes:
- label: "Expected Behavior"
- description: "What should happen instead?"
- placeholder: "e.g., The form should be saved successfully."
- validations:
- required: true
- - type: textarea
- id: actual_behavior
- attributes:
- label: "Actual Behavior"
- description: "What actually happens?"
- placeholder: "e.g., A 500 error is returned with no useful error message."
- validations:
- required: true
- - type: input
- id: version
- attributes:
- label: "Version"
- description: "Which version of Miniflux are you using?"
- placeholder: "e.g., 2.2.6"
- validations:
- required: true
- - type: input
- id: browser
- attributes:
- label: "Browser"
- description: "If applicable, which browser are you using? Please provide the version."
- placeholder: "e.g., Chrome, Firefox, Safari"
- validations:
- required: false
- - type: textarea
- id: logs
- attributes:
- label: "Relevant Logs or Error Output"
- description: "Paste any relevant logs or error messages (if applicable)."
- render: shell
- placeholder: "e.g., Stack trace, log files, browser console logs, or console output"
- validations:
- required: false
- - type: textarea
- id: additional_context
- attributes:
- label: "Additional Context"
- description: "Add any other context about the problem here."
- placeholder: "e.g., Screenshots, video recordings, or related issues"
- validations:
- required: false
- - type: checkboxes
- id: agreement
- attributes:
- label: "Checklist"
- description: "Please confirm the following:"
- options:
- - label: "I have searched existing issues to ensure this bug hasn't been reported before."
- required: true
|