|
| 1 | +name: Bug Report |
| 2 | +description: Report a bug in the ttd-data SDK |
| 3 | +labels: ["bug"] |
| 4 | +body: |
| 5 | + - type: markdown |
| 6 | + attributes: |
| 7 | + value: | |
| 8 | + Thanks for reporting a bug! Please fill out the sections below so we can reproduce and fix the issue. |
| 9 | +
|
| 10 | + - type: input |
| 11 | + id: sdk-version |
| 12 | + attributes: |
| 13 | + label: ttd-data Version |
| 14 | + description: "Output of `pip show ttd-data`" |
| 15 | + placeholder: "e.g. 0.1.7" |
| 16 | + validations: |
| 17 | + required: true |
| 18 | + |
| 19 | + - type: dropdown |
| 20 | + id: endpoint |
| 21 | + attributes: |
| 22 | + label: TTD Endpoint |
| 23 | + description: Which endpoint were you using? |
| 24 | + options: |
| 25 | + - /data/advertiser (First-Party Data) |
| 26 | + - /data/thirdparty (Third-Party Data) |
| 27 | + - /providerapi/offlineconversion (Offline Conversion) |
| 28 | + - /data/deletion-optout/advertiser |
| 29 | + - /data/deletion-optout/thirdparty |
| 30 | + - /data/deletion-optout/merchant |
| 31 | + - Not applicable |
| 32 | + validations: |
| 33 | + required: true |
| 34 | + |
| 35 | + - type: textarea |
| 36 | + id: environment |
| 37 | + attributes: |
| 38 | + label: Environment |
| 39 | + description: Python version, OS, and any other relevant environment details |
| 40 | + placeholder: | |
| 41 | + - Python: 3.12 |
| 42 | + - OS: Ubuntu 22.04 |
| 43 | + - Install method: pip |
| 44 | + validations: |
| 45 | + required: true |
| 46 | + |
| 47 | + - type: dropdown |
| 48 | + id: regression |
| 49 | + attributes: |
| 50 | + label: Did this work before? |
| 51 | + options: |
| 52 | + - "Yes, it was previously working" |
| 53 | + - "No, this never worked" |
| 54 | + - "Not sure" |
| 55 | + validations: |
| 56 | + required: true |
| 57 | + |
| 58 | + - type: textarea |
| 59 | + id: description |
| 60 | + attributes: |
| 61 | + label: Describe the Bug |
| 62 | + placeholder: "A clear and concise description of what went wrong." |
| 63 | + validations: |
| 64 | + required: true |
| 65 | + |
| 66 | + - type: textarea |
| 67 | + id: reproduction |
| 68 | + attributes: |
| 69 | + label: Steps to Reproduce |
| 70 | + placeholder: Minimal code snippet or steps to trigger the bug. |
| 71 | + validations: |
| 72 | + required: true |
| 73 | + |
| 74 | + - type: textarea |
| 75 | + id: expected |
| 76 | + attributes: |
| 77 | + label: Expected Behavior |
| 78 | + placeholder: What you expected to happen. |
| 79 | + validations: |
| 80 | + required: true |
| 81 | + |
| 82 | + - type: textarea |
| 83 | + id: actual |
| 84 | + attributes: |
| 85 | + label: Actual Behavior |
| 86 | + placeholder: What actually happened. Include the full traceback if applicable. |
| 87 | + validations: |
| 88 | + required: true |
| 89 | + |
| 90 | + - type: textarea |
| 91 | + id: additional |
| 92 | + attributes: |
| 93 | + label: Additional Context |
| 94 | + placeholder: Any other context — screenshots, logs, related issues, workarounds tried. |
| 95 | + validations: |
| 96 | + required: false |
0 commit comments