|
| 1 | +name: Bug report |
| 2 | +description: Submit a bug report to help us improve |
| 3 | +title: "[BUG] " |
| 4 | +labels: ["C-bug", "S-awaiting-triage"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + We value your time and effort in submitting this bug report. Here are a few things to check before clicking the submit button :) |
| 10 | + 1. Make sure you're on the latest version of the app. The current release can be found here: https://github.com/juspay/hyperswitch/releases/latest. |
| 11 | + 2. Search through **both** open and closed issues for your bug: https://github.com/juspay/hyperswitch/issues?q=is%3Aissue+sort%3Aupdated-desc+. |
| 12 | + 3. Please try to fill this template completely to the best of your abilities. A bug report that is clear and has a reproducible example lets us get to work faster. |
| 13 | +
|
| 14 | + - type: textarea |
| 15 | + id: bug-description |
| 16 | + attributes: |
| 17 | + label: Bug Description |
| 18 | + description: A clear and concise description of what the bug is. |
| 19 | + placeholder: It bugs out when ... |
| 20 | + validations: |
| 21 | + required: true |
| 22 | + |
| 23 | + - type: textarea |
| 24 | + id: expected-behavior |
| 25 | + attributes: |
| 26 | + label: Expected Behavior |
| 27 | + description: What did you think should happen? Add request-response bodies, if applicable. |
| 28 | + placeholder: It should ... |
| 29 | + validations: |
| 30 | + required: true |
| 31 | + |
| 32 | + - type: textarea |
| 33 | + id: actual-behavior |
| 34 | + attributes: |
| 35 | + label: Actual Behavior |
| 36 | + description: What did actually happen? Add request-response bodies or screenshots, if applicable. |
| 37 | + placeholder: It actually ... |
| 38 | + validations: |
| 39 | + required: true |
| 40 | + |
| 41 | + - type: textarea |
| 42 | + id: steps-to-reproduce |
| 43 | + attributes: |
| 44 | + label: Steps To Reproduce |
| 45 | + description: How do you trigger this bug? Please walk us through it step by step. |
| 46 | + value: | |
| 47 | + Provide an unambiguous set of steps to reproduce this bug. Include code or configuration to reproduce, if relevant. |
| 48 | + 1. Go to '...' |
| 49 | + 2. Click on '....' |
| 50 | + 3. Scroll down to '....' |
| 51 | + validations: |
| 52 | + required: true |
| 53 | + |
| 54 | + - type: textarea |
| 55 | + id: context |
| 56 | + attributes: |
| 57 | + label: Context For The Bug |
| 58 | + description: How has this issue affected you? What are you trying to accomplish? |
| 59 | + placeholder: Providing context (e.g. request-response bodies, stack trace or log data) helps us come up with a solution that is most useful in the real world. |
| 60 | + validations: |
| 61 | + required: false |
| 62 | + |
| 63 | + - type: textarea |
| 64 | + id: environment |
| 65 | + attributes: |
| 66 | + label: Environment |
| 67 | + description: Provide information about the environment where you are running or trying to build the app. |
| 68 | + value: | |
| 69 | + Are you using hyperswitch hosted version? Yes/No |
| 70 | + If yes, please provide the value of the `x-request-id` response header to help us debug your issue. |
| 71 | +
|
| 72 | + If not (or if building/running locally), please provide the following details: |
| 73 | + 1. Operating System or Linux distribution: |
| 74 | + 2. Rust version (output of `rustc --version`): `` |
| 75 | + 3. App version (output of `cargo r --features vergen -- --version`): `` |
| 76 | + validations: |
| 77 | + required: true |
| 78 | + |
| 79 | + - type: checkboxes |
| 80 | + id: no-duplicate-issues |
| 81 | + attributes: |
| 82 | + label: Have you spent some time checking if this bug has been raised before? |
| 83 | + options: |
| 84 | + - label: I checked and didn't find a similar issue |
| 85 | + required: true |
| 86 | + |
| 87 | + - type: checkboxes |
| 88 | + id: read-contributing-guidelines |
| 89 | + attributes: |
| 90 | + label: Have you read the Contributing Guidelines? |
| 91 | + options: |
| 92 | + - label: I have read the [Contributing Guidelines](https://github.com/juspay/hyperswitch/blob/main/docs/CONTRIBUTING.md) |
| 93 | + required: true |
| 94 | + |
| 95 | + - type: dropdown |
| 96 | + id: willing-to-submit-pr |
| 97 | + attributes: |
| 98 | + label: Are you willing to submit a PR? |
| 99 | + description: This is absolutely not required, but we are happy to guide you in the contribution process. |
| 100 | + options: |
| 101 | + - Yes, I am willing to submit a PR! |
| 102 | + - No, but I'm happy to collaborate on a PR with someone else |
| 103 | + - No, I don't have time to work on this right now |
0 commit comments