mirror of
https://github.com/frappe/gunicorn.git
synced 2026-07-02 10:41:30 +08:00
github: Consolidate triage into single Issue Triage category
This commit is contained in:
parent
6a46d66a56
commit
cae2ef4fe4
74
.github/DISCUSSION_TEMPLATE/feature-request.yml
vendored
74
.github/DISCUSSION_TEMPLATE/feature-request.yml
vendored
@ -1,74 +0,0 @@
|
|||||||
title: "[Feature] "
|
|
||||||
labels:
|
|
||||||
- enhancement
|
|
||||||
body:
|
|
||||||
- type: markdown
|
|
||||||
attributes:
|
|
||||||
value: |
|
|
||||||
Thanks for suggesting a feature!
|
|
||||||
|
|
||||||
Before submitting, please:
|
|
||||||
- Search [existing discussions](https://github.com/benoitc/gunicorn/discussions) and [issues](https://github.com/benoitc/gunicorn/issues) for similar requests
|
|
||||||
- Check if this is already possible with existing configuration
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
id: problem
|
|
||||||
attributes:
|
|
||||||
label: Problem Statement
|
|
||||||
description: What problem does this feature solve? What's the use case?
|
|
||||||
placeholder: I'm trying to... but currently...
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
id: solution
|
|
||||||
attributes:
|
|
||||||
label: Proposed Solution
|
|
||||||
description: How would you like this to work?
|
|
||||||
placeholder: |
|
|
||||||
I'd like a new setting `--my-option` that...
|
|
||||||
|
|
||||||
Example usage:
|
|
||||||
gunicorn --my-option value myapp:app
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
id: alternatives
|
|
||||||
attributes:
|
|
||||||
label: Alternatives Considered
|
|
||||||
description: What other solutions have you considered or tried?
|
|
||||||
validations:
|
|
||||||
required: false
|
|
||||||
|
|
||||||
- type: dropdown
|
|
||||||
id: scope
|
|
||||||
attributes:
|
|
||||||
label: Feature Scope
|
|
||||||
description: What area does this feature affect?
|
|
||||||
options:
|
|
||||||
- Configuration / Settings
|
|
||||||
- Worker behavior
|
|
||||||
- HTTP handling
|
|
||||||
- Logging / Instrumentation
|
|
||||||
- Signals / Process management
|
|
||||||
- Documentation
|
|
||||||
- Other
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: checkboxes
|
|
||||||
id: contribution
|
|
||||||
attributes:
|
|
||||||
label: Contribution
|
|
||||||
options:
|
|
||||||
- label: I would be willing to contribute a PR for this feature
|
|
||||||
required: false
|
|
||||||
|
|
||||||
- type: checkboxes
|
|
||||||
id: checklist
|
|
||||||
attributes:
|
|
||||||
label: Checklist
|
|
||||||
options:
|
|
||||||
- label: I have searched existing discussions and issues for similar requests
|
|
||||||
required: true
|
|
||||||
@ -1,30 +1,44 @@
|
|||||||
title: "[Bug] "
|
title: "[Triage] "
|
||||||
labels:
|
labels:
|
||||||
- bug
|
|
||||||
- triage
|
- triage
|
||||||
body:
|
body:
|
||||||
- type: markdown
|
- type: markdown
|
||||||
attributes:
|
attributes:
|
||||||
value: |
|
value: |
|
||||||
Thanks for taking the time to report a bug!
|
Thanks for taking the time to report an issue or suggest a feature!
|
||||||
|
|
||||||
Before submitting, please:
|
**Before submitting, please:**
|
||||||
- Search [existing discussions](https://github.com/benoitc/gunicorn/discussions) and [issues](https://github.com/benoitc/gunicorn/issues) for duplicates
|
- Search [existing discussions](https://github.com/benoitc/gunicorn/discussions) and [issues](https://github.com/benoitc/gunicorn/issues) for duplicates
|
||||||
- Check the [FAQ](https://docs.gunicorn.org/en/latest/faq.html) and [documentation](https://docs.gunicorn.org/)
|
- Check the [FAQ](https://docs.gunicorn.org/en/latest/faq.html) and [documentation](https://docs.gunicorn.org/)
|
||||||
|
|
||||||
|
- type: dropdown
|
||||||
|
id: type
|
||||||
|
attributes:
|
||||||
|
label: Type
|
||||||
|
description: What type of issue is this?
|
||||||
|
options:
|
||||||
|
- Bug Report
|
||||||
|
- Feature Request
|
||||||
|
- Performance Issue
|
||||||
|
- Documentation Issue
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: description
|
id: description
|
||||||
attributes:
|
attributes:
|
||||||
label: Bug Description
|
label: Description
|
||||||
description: A clear description of what the bug is
|
description: A clear description of the issue or feature request
|
||||||
placeholder: What happened? What did you expect to happen?
|
placeholder: |
|
||||||
|
For bugs: What happened? What did you expect?
|
||||||
|
For features: What problem does this solve?
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: reproduce
|
id: reproduce
|
||||||
attributes:
|
attributes:
|
||||||
label: Steps to Reproduce
|
label: Steps to Reproduce (for bugs)
|
||||||
description: Minimal steps to reproduce the behavior
|
description: Minimal steps to reproduce the behavior
|
||||||
placeholder: |
|
placeholder: |
|
||||||
1. Create a simple app with...
|
1. Create a simple app with...
|
||||||
@ -32,7 +46,7 @@ body:
|
|||||||
3. Send request...
|
3. Send request...
|
||||||
4. See error...
|
4. See error...
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: false
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: config
|
id: config
|
||||||
@ -42,10 +56,8 @@ body:
|
|||||||
render: bash
|
render: bash
|
||||||
placeholder: |
|
placeholder: |
|
||||||
gunicorn --workers 4 --bind 0.0.0.0:8000 myapp:app
|
gunicorn --workers 4 --bind 0.0.0.0:8000 myapp:app
|
||||||
|
|
||||||
# Or config file contents
|
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: false
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: logs
|
id: logs
|
||||||
@ -87,6 +99,7 @@ body:
|
|||||||
- tornado
|
- tornado
|
||||||
- asgi (beta)
|
- asgi (beta)
|
||||||
- custom
|
- custom
|
||||||
|
- N/A (feature request)
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
@ -103,7 +116,7 @@ body:
|
|||||||
id: additional
|
id: additional
|
||||||
attributes:
|
attributes:
|
||||||
label: Additional Context
|
label: Additional Context
|
||||||
description: Any other context about the problem (proxy setup, Docker, etc.)
|
description: Any other context (proxy setup, Docker, proposed solution, etc.)
|
||||||
validations:
|
validations:
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
@ -116,5 +129,3 @@ body:
|
|||||||
required: true
|
required: true
|
||||||
- label: I have checked the documentation and FAQ
|
- label: I have checked the documentation and FAQ
|
||||||
required: true
|
required: true
|
||||||
- label: I have included the minimal configuration to reproduce this issue
|
|
||||||
required: true
|
|
||||||
9
.github/ISSUE_TEMPLATE/config.yml
vendored
9
.github/ISSUE_TEMPLATE/config.yml
vendored
@ -1,11 +1,8 @@
|
|||||||
blank_issues_enabled: false
|
blank_issues_enabled: false
|
||||||
contact_links:
|
contact_links:
|
||||||
- name: Bug Report
|
- name: Bug Report / Feature Request
|
||||||
url: https://github.com/benoitc/gunicorn/discussions/new?category=q-a
|
url: https://github.com/benoitc/gunicorn/discussions/new?category=issue-triage
|
||||||
about: Report a bug or unexpected behavior (starts as a discussion for triage)
|
about: Report a bug or request a feature (triaged before becoming an issue)
|
||||||
- name: Feature Request
|
|
||||||
url: https://github.com/benoitc/gunicorn/discussions/new?category=ideas
|
|
||||||
about: Suggest a new feature or improvement
|
|
||||||
- name: Question
|
- name: Question
|
||||||
url: https://github.com/benoitc/gunicorn/discussions/new?category=q-a
|
url: https://github.com/benoitc/gunicorn/discussions/new?category=q-a
|
||||||
about: Ask a question about configuration, deployment, or usage
|
about: Ask a question about configuration, deployment, or usage
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user