|
| 1 | +name: Bug Report 🪲 |
| 2 | +description: Create a bug report to help us improve. |
| 3 | +title: '[Bug]: ' |
| 4 | +labels: ['bug'] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + # Please follow these steps first: |
| 10 | + - type: markdown |
| 11 | + attributes: |
| 12 | + value: | |
| 13 | + ## Troubleshoot |
| 14 | + If Athenna is not behaving the way you expect, we'd ask you to look at the [documentation](https://athenna.io/docs/getting-started) and search the issue tracker for evidence supporting your expectation. Please make reasonable efforts to troubleshoot and rule out issues with your code, the configuration, or any 3rd party libraries you might be using. |
| 15 | + - type: markdown |
| 16 | + attributes: |
| 17 | + value: | |
| 18 | + ## Ask for help through appropriate channels |
| 19 | + If you feel unsure about the cause of the problem, consider asking for help on for example [StackOverflow](https://stackoverflow.com/questions/ask) or our [Discord](https://discord.gg/JdEbBAKw6X) before posting a bug report. The issue tracker is not a help forum. |
| 20 | + - type: markdown |
| 21 | + attributes: |
| 22 | + value: | |
| 23 | + ## Make a minimal reproduction |
| 24 | + To file the report, you will need a GitHub repository with a minimal (but complete) example and simple/clear steps on how to reproduce the bug. |
| 25 | +
|
| 26 | + The simpler you can make it, the more likely we are to successfully verify and fix the bug. |
| 27 | + - type: markdown |
| 28 | + attributes: |
| 29 | + value: | |
| 30 | + :bangbang: Bug reports without a minimal reproduction will be rejected. :bangbang: |
| 31 | +
|
| 32 | + --- |
| 33 | + - type: input |
| 34 | + id: version |
| 35 | + attributes: |
| 36 | + label: Version |
| 37 | + description: | |
| 38 | + The version you are using. |
| 39 | + Is it the [latest](https://github.com/AthennaIO/Template/releases)? Test and see if the bug has already been fixed. |
| 40 | + placeholder: ex. 1.0.0 |
| 41 | + validations: |
| 42 | + required: true |
| 43 | + - type: textarea |
| 44 | + id: reproduction |
| 45 | + attributes: |
| 46 | + label: Steps to reproduce |
| 47 | + description: Please link to a repository with a minimal reproduction and describe accurately how we can reproduce/verify the bug. |
| 48 | + placeholder: | |
| 49 | + Example steps (replace with your own): |
| 50 | + 1. Clone my repository at: https://github.com/<myuser>/example |
| 51 | + 2. npm run install |
| 52 | + 3. npm run start (You should see the error come up) |
| 53 | + validations: |
| 54 | + required: true |
| 55 | + - type: textarea |
| 56 | + id: expected |
| 57 | + attributes: |
| 58 | + label: Expected behavior |
| 59 | + description: A description of what you expect to happen. |
| 60 | + placeholder: I expect to see X or Y |
| 61 | + validations: |
| 62 | + required: true |
| 63 | + - type: textarea |
| 64 | + id: what-happened |
| 65 | + attributes: |
| 66 | + label: Actual behavior |
| 67 | + description: A clear and concise description of the unexpected behavior. |
| 68 | + placeholder: A bug happened! |
| 69 | + validations: |
| 70 | + required: true |
| 71 | + - type: textarea |
| 72 | + id: context |
| 73 | + attributes: |
| 74 | + label: Additional context |
| 75 | + description: Anything else that might be relevant |
| 76 | + validations: |
| 77 | + required: false |
| 78 | + - type: textarea |
| 79 | + id: envinfo |
| 80 | + attributes: |
| 81 | + label: Environment |
| 82 | + description: | |
| 83 | + Please paste the output of running `npx envinfo --system --binaries`. |
| 84 | + This will be automatically formatted as a code block, so no need for backticks. |
| 85 | + placeholder: | |
| 86 | + System: |
| 87 | + OS: macOS 12.3.1 |
| 88 | + CPU: (8) arm64 Apple M1 Pro |
| 89 | + Memory: 130.23 MB / 16.00 GB |
| 90 | + Shell: 5.8 - /opt/homebrew/bin/zsh |
| 91 | + Binaries: |
| 92 | + Node: 16.13.1 - ~/.nvm/versions/node/v16.13.1/bin/node |
| 93 | + npm: 8.1.2 - ~/.nvm/versions/node/v16.13.1/bin/npm |
| 94 | + render: Shell |
| 95 | + validations: |
| 96 | + required: true |
0 commit comments