|
| 1 | +name: 🐛 Bug report |
| 2 | +description: Report a defect in OpenConditions |
| 3 | +title: "[Bug]: " |
| 4 | +labels: [bug, needs-triage] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for taking the time to file a bug. Please fill out as much as you can — |
| 10 | + incomplete reports are slower to act on and may be closed. |
| 11 | +
|
| 12 | + - 🔒 **Security issue?** Do **not** file it here — see [SECURITY.md](https://github.com/openconditions/openconditions/blob/main/SECURITY.md). |
| 13 | + - ❓ **Question or idea?** Please use [Discussions](https://github.com/openconditions/openconditions/discussions) instead. |
| 14 | + - type: checkboxes |
| 15 | + id: preflight |
| 16 | + attributes: |
| 17 | + label: Before you start |
| 18 | + options: |
| 19 | + - label: I searched [existing issues](https://github.com/openconditions/openconditions/issues?q=is%3Aissue) and this isn't a duplicate. |
| 20 | + required: true |
| 21 | + - label: I'm on the latest `main` or the most recent release (older versions aren't patched). |
| 22 | + required: true |
| 23 | + - label: This is a bug in OpenConditions itself, not in an upstream feed or a third-party API. |
| 24 | + required: true |
| 25 | + - type: textarea |
| 26 | + id: what-happened |
| 27 | + attributes: |
| 28 | + label: What happened? |
| 29 | + description: A clear, concise description of the bug — what you expected and what actually occurred. |
| 30 | + validations: |
| 31 | + required: true |
| 32 | + - type: textarea |
| 33 | + id: repro |
| 34 | + attributes: |
| 35 | + label: Steps to reproduce |
| 36 | + placeholder: | |
| 37 | + 1. Configure feed source '...' |
| 38 | + 2. Run the ingest / call the emitter '...' |
| 39 | + 3. See error |
| 40 | + validations: |
| 41 | + required: true |
| 42 | + - type: dropdown |
| 43 | + id: component |
| 44 | + attributes: |
| 45 | + label: Affected component |
| 46 | + description: Which part of OpenConditions? Pick the closest. |
| 47 | + options: |
| 48 | + - Ingest service (services/ingest) |
| 49 | + - OpenLR resolver (services/openlr-resolver) |
| 50 | + - "@openconditions/core" |
| 51 | + - "@openconditions/roads" |
| 52 | + - "@openconditions/publishers" |
| 53 | + - "@openconditions/openlr" |
| 54 | + - OpenMapX integration (integrations/road-conditions-openconditions) |
| 55 | + - Documentation |
| 56 | + - Other / not sure |
| 57 | + validations: |
| 58 | + required: true |
| 59 | + - type: input |
| 60 | + id: feed-source |
| 61 | + attributes: |
| 62 | + label: Specific feed source / package id |
| 63 | + description: If the component above is a feed source or package, name it. |
| 64 | + placeholder: "roads/open511-bc, publishers/datex2, …" |
| 65 | + - type: input |
| 66 | + id: version |
| 67 | + attributes: |
| 68 | + label: Version / commit |
| 69 | + description: Tag, release, or short SHA from `git rev-parse --short HEAD`. |
| 70 | + validations: |
| 71 | + required: true |
| 72 | + - type: input |
| 73 | + id: last-working |
| 74 | + attributes: |
| 75 | + label: Last working version |
| 76 | + description: If this used to work, the last version/commit where it did (helps us bisect). Leave blank if unknown. |
| 77 | + - type: textarea |
| 78 | + id: environment |
| 79 | + attributes: |
| 80 | + label: Environment |
| 81 | + description: Required for ingest/resolver reports. Tell us how you run it and which feeds are configured. |
| 82 | + placeholder: | |
| 83 | + OS: macOS 15.0 / Ubuntu 24.04 |
| 84 | + Node: 24.x |
| 85 | + pnpm: 11.x |
| 86 | + Python: 3.12 (if a resolver issue) |
| 87 | + Docker: 27.x (if running the containers) |
| 88 | + Feeds configured: ndw, open511-bc, wzdx-us, … |
| 89 | + PostGIS: version / where it runs |
| 90 | + render: text |
| 91 | + - type: textarea |
| 92 | + id: logs |
| 93 | + attributes: |
| 94 | + label: Relevant logs and/or screenshots |
| 95 | + description: | |
| 96 | + Paste relevant log output (ingest logs, resolver logs, API errors) or attach screenshots. |
| 97 | + **Redact secrets, tokens, and `.env` values.** |
| 98 | + render: shell |
0 commit comments