|
| 1 | +name: 🐛 Bug report |
| 2 | +description: Something not behaving as expected? |
| 3 | +title: '[Bug]: ' |
| 4 | +labels: ['bug'] |
| 5 | +body: |
| 6 | +- type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Please check for an existing issue and the [README](https://github.com/martincostello/aspnetcore-openapi/blob/main/README.md) before submitting a bug report. |
| 10 | +
|
| 11 | + If you're not using the latest release, please try upgrading to the latest version first to see if the issue resolves itself. |
| 12 | +- type: input |
| 13 | + attributes: |
| 14 | + label: Version |
| 15 | + description: Which version of the application are you experiencing the issue with? |
| 16 | + placeholder: 1.0.0 |
| 17 | + validations: |
| 18 | + required: true |
| 19 | +- type: textarea |
| 20 | + attributes: |
| 21 | + label: Describe the bug |
| 22 | + description: A clear and concise description of what the bug is. |
| 23 | + validations: |
| 24 | + required: true |
| 25 | +- type: textarea |
| 26 | + attributes: |
| 27 | + label: Expected behaviour |
| 28 | + description: A clear and concise description of what you expected to happen. |
| 29 | + validations: |
| 30 | + required: false |
| 31 | +- type: textarea |
| 32 | + attributes: |
| 33 | + label: Actual behaviour |
| 34 | + description: What actually happens. |
| 35 | + validations: |
| 36 | + required: false |
| 37 | +- type: textarea |
| 38 | + attributes: |
| 39 | + label: Steps to reproduce |
| 40 | + description: | |
| 41 | + Provide a link to a [minimalistic project which reproduces this issue (repro)](https://stackoverflow.com/help/mcve) hosted in a **public** GitHub repository. |
| 42 | + Code snippets, such as a failing unit test or small console app, which demonstrate the issue wrapped in a [fenced code block](https://docs.github.com/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks) are also acceptable. |
| 43 | +
|
| 44 | + This issue will be closed if: |
| 45 | + - The behaviour you're reporting cannot be easily reproduced. |
| 46 | + - The issue is a duplicate of an existing issue. |
| 47 | + - The behaviour you're reporting is by design. |
| 48 | + validations: |
| 49 | + required: false |
| 50 | +- type: textarea |
| 51 | + attributes: |
| 52 | + label: Exception(s) (if any) |
| 53 | + description: Include any exception(s) and/or stack trace(s) you get when facing this issue. |
| 54 | + render: text |
| 55 | + validations: |
| 56 | + required: false |
| 57 | +- type: input |
| 58 | + attributes: |
| 59 | + label: .NET Version |
| 60 | + description: | |
| 61 | + Run `dotnet --version` to get the .NET SDK version you're using. |
| 62 | + Alternatively, which target framework(s) (e.g. `net8.0`) does the project you're using the package with target? |
| 63 | + placeholder: 9.0.100 |
| 64 | + validations: |
| 65 | + required: false |
| 66 | +- type: textarea |
| 67 | + attributes: |
| 68 | + label: Anything else? |
| 69 | + description: | |
| 70 | + Links? References? Anything that will give us more context about the issue you are encountering is useful. |
| 71 | +
|
| 72 | + 💡Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. |
| 73 | + validations: |
| 74 | + required: false |
0 commit comments