|
| 1 | +name: Bug report |
| 2 | +description: Report a reproducible defect in a pipeline, filter, documentation flow, or repository automation. |
| 3 | +title: "[Bug]: " |
| 4 | +labels: |
| 5 | + - bug |
| 6 | + - triage |
| 7 | +body: |
| 8 | + - type: markdown |
| 9 | + attributes: |
| 10 | + value: | |
| 11 | + Thanks for taking the time to report a bug. |
| 12 | +
|
| 13 | + Please include enough detail for maintainers to reproduce the issue quickly. If the bug involves credentials or sensitive configuration, redact secrets before posting. |
| 14 | +
|
| 15 | + - type: checkboxes |
| 16 | + id: checks |
| 17 | + attributes: |
| 18 | + label: Before submitting |
| 19 | + description: Confirm the basics so we can focus on the fix instead of detective work. |
| 20 | + options: |
| 21 | + - label: I searched existing issues and did not find a matching report. |
| 22 | + required: true |
| 23 | + - label: I can reproduce this issue on the latest version of the repository or current `main` branch. |
| 24 | + required: true |
| 25 | + - label: I removed or masked secrets, tokens, and private endpoints from my report. |
| 26 | + required: true |
| 27 | + |
| 28 | + - type: dropdown |
| 29 | + id: area |
| 30 | + attributes: |
| 31 | + label: Affected area |
| 32 | + description: Which part of the project is affected? |
| 33 | + options: |
| 34 | + - pipelines/azure |
| 35 | + - pipelines/google |
| 36 | + - pipelines/infomaniak |
| 37 | + - pipelines/n8n |
| 38 | + - filters |
| 39 | + - docs |
| 40 | + - CI / GitHub workflows |
| 41 | + - Other / unsure |
| 42 | + validations: |
| 43 | + required: true |
| 44 | + |
| 45 | + - type: input |
| 46 | + id: summary |
| 47 | + attributes: |
| 48 | + label: Bug summary |
| 49 | + description: A short, specific summary of the problem. |
| 50 | + placeholder: Streaming stops after the first chunk when using the n8n pipeline |
| 51 | + validations: |
| 52 | + required: true |
| 53 | + |
| 54 | + - type: textarea |
| 55 | + id: current-behavior |
| 56 | + attributes: |
| 57 | + label: Current behavior |
| 58 | + description: What happened? Include the visible failure, incorrect output, or broken workflow. |
| 59 | + placeholder: | |
| 60 | + The request starts correctly, then the stream closes without a completion event. |
| 61 | + validations: |
| 62 | + required: true |
| 63 | + |
| 64 | + - type: textarea |
| 65 | + id: expected-behavior |
| 66 | + attributes: |
| 67 | + label: Expected behavior |
| 68 | + description: What should have happened instead? |
| 69 | + placeholder: The stream should continue until the final event and emit a completion status. |
| 70 | + validations: |
| 71 | + required: true |
| 72 | + |
| 73 | + - type: textarea |
| 74 | + id: reproduction |
| 75 | + attributes: |
| 76 | + label: Steps to reproduce |
| 77 | + description: Provide a minimal, numbered reproduction. |
| 78 | + placeholder: | |
| 79 | + 1. Configure the n8n pipeline with ... |
| 80 | + 2. Send a chat request with ... |
| 81 | + 3. Observe that ... |
| 82 | + validations: |
| 83 | + required: true |
| 84 | + |
| 85 | + - type: textarea |
| 86 | + id: logs |
| 87 | + attributes: |
| 88 | + label: Relevant logs, errors, or screenshots |
| 89 | + description: Paste stack traces, HTTP payload snippets, or screenshots when helpful. |
| 90 | + render: shell |
| 91 | + validations: |
| 92 | + required: false |
| 93 | + |
| 94 | + - type: textarea |
| 95 | + id: environment |
| 96 | + attributes: |
| 97 | + label: Environment details |
| 98 | + description: Include the versions and environment details that matter. |
| 99 | + placeholder: | |
| 100 | + - OS: |
| 101 | + - Python version: |
| 102 | + - Open WebUI version: |
| 103 | + - Repository commit or release: |
| 104 | + - Provider / model: |
| 105 | + - Deployment method: |
| 106 | + validations: |
| 107 | + required: true |
| 108 | + |
| 109 | + - type: textarea |
| 110 | + id: context |
| 111 | + attributes: |
| 112 | + label: Additional context |
| 113 | + description: Link related issues, PRs, docs, or anything else that could speed up diagnosis. |
| 114 | + validations: |
| 115 | + required: false |
0 commit comments