Benoit Chesneau 6a46d66a56 github: Add discussions-first triage workflow
Redirect issue creation to GitHub Discussions for proper triage:
- Disable blank issues, redirect to discussion categories
- Add structured discussion templates for bugs, features, questions
- Add preapproved issue template for maintainer use only
- Update CONTRIBUTING.md to reflect new workflow
2026-01-23 02:13:34 +01:00

51 lines
1.3 KiB
YAML

title: "[Question] "
body:
- type: markdown
attributes:
value: |
Have a question about Gunicorn?
Before asking, please check:
- [Documentation](https://docs.gunicorn.org/)
- [FAQ](https://docs.gunicorn.org/en/latest/faq.html)
- [Settings Reference](https://docs.gunicorn.org/en/latest/settings.html)
- [Existing discussions](https://github.com/benoitc/gunicorn/discussions)
- type: textarea
id: question
attributes:
label: Question
description: What would you like to know?
validations:
required: true
- type: textarea
id: context
attributes:
label: Context
description: Any relevant context (your setup, what you've tried, etc.)
placeholder: |
I'm running gunicorn with...
I've tried...
validations:
required: false
- type: textarea
id: config
attributes:
label: Configuration (if relevant)
description: Your gunicorn configuration
render: bash
validations:
required: false
- type: checkboxes
id: checklist
attributes:
label: Checklist
options:
- label: I have checked the documentation and FAQ
required: true
- label: I have searched existing discussions
required: true