|
| 1 | +name: 🐛 Bug Report |
| 2 | +description: Create a report to help us reproduce and fix the bug |
| 3 | +title: "[BUG] " |
| 4 | +labels: ["bug"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: > |
| 9 | + #### Before submitting a bug, please make sure the issue hasn't been already addressed by searching through [the existing and past issues](https://github.com/bunkerity/bunkerweb/issues?q=is%3Aissue+sort%3Acreated-desc+). |
| 10 | + - type: textarea |
| 11 | + id: what-happened |
| 12 | + attributes: |
| 13 | + label: What happened? |
| 14 | + description: Concise description of what you're trying to do, the expected behavior and the current bug. |
| 15 | + placeholder: Describe the bug, the expected behavior and the current behavior |
| 16 | + validations: |
| 17 | + required: true |
| 18 | + - type: textarea |
| 19 | + id: how-to-reproduce |
| 20 | + attributes: |
| 21 | + label: How to reproduce? |
| 22 | + description: Concise description of how to reproduce the issue. |
| 23 | + placeholder: Describe how to reproduce the issue |
| 24 | + validations: |
| 25 | + required: true |
| 26 | + - type: textarea |
| 27 | + id: configuration-file |
| 28 | + attributes: |
| 29 | + label: Configuration file(s) (yaml or .env) |
| 30 | + description: | |
| 31 | + Please copy and paste your configuration file or the relevant part of it. |
| 32 | + ⚠️ DON'T FORGET TO REMOVE PRIVATE DATA LIKE IP ADDRESSES ! ⚠️ |
| 33 | + placeholder: Configuration file |
| 34 | + render: YAML |
| 35 | + - type: textarea |
| 36 | + id: logs |
| 37 | + attributes: |
| 38 | + label: Relevant log output |
| 39 | + description: | |
| 40 | + Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. |
| 41 | + ⚠️ DON'T FORGET TO REMOVE PRIVATE DATA LIKE IP ADDRESSES ! ⚠️ |
| 42 | + placeholder: Log output |
| 43 | + render: shell |
| 44 | + - type: input |
| 45 | + id: version |
| 46 | + attributes: |
| 47 | + label: BunkerWeb version |
| 48 | + description: What version of BunkerWeb are you running? |
| 49 | + placeholder: Version |
| 50 | + value: 1.6.0-rc2 |
| 51 | + validations: |
| 52 | + required: true |
| 53 | + - type: dropdown |
| 54 | + id: integration |
| 55 | + attributes: |
| 56 | + label: What integration are you using? |
| 57 | + options: |
| 58 | + - Docker |
| 59 | + - Autoconf |
| 60 | + - Swarm |
| 61 | + - Kubernetes |
| 62 | + - Linux |
| 63 | + - Ansible |
| 64 | + - Vagrant |
| 65 | + default: 0 |
| 66 | + validations: |
| 67 | + required: true |
| 68 | + - type: input |
| 69 | + id: linux-distribution |
| 70 | + attributes: |
| 71 | + label: Linux distribution (if applicable) |
| 72 | + description: What Linux distribution are you using? (e.g. Ubuntu Server 18.04) |
| 73 | + placeholder: Linux distribution |
| 74 | + - type: checkboxes |
| 75 | + id: removed-private-data |
| 76 | + attributes: |
| 77 | + label: Removed private data |
| 78 | + description: | |
| 79 | + We would like to emphasize that we are not responsible for any private data that may be inadvertently included in the logs or configuration files. |
| 80 | + ⚠️ I have removed all private data from the configuration file and the logs ⚠️ |
| 81 | + options: |
| 82 | + - label: I have removed all private data from the configuration file and the logs |
| 83 | + required: true |
| 84 | + - type: checkboxes |
| 85 | + id: terms |
| 86 | + attributes: |
| 87 | + label: Code of Conduct |
| 88 | + description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/bunkerity/bunkerweb/blob/master/CODE_OF_CONDUCT.md) |
| 89 | + options: |
| 90 | + - label: I agree to follow this project's Code of Conduct |
| 91 | + required: true |
0 commit comments