|
| 1 | +# This is adapted from the Mend Renovate CLI template |
| 2 | +# (https://github.com/renovatebot/renovate/blob/195e3084e52eeadc495a33292529a9b899ad5902/.github/DISCUSSION_TEMPLATE/request-help.yml) |
| 3 | +# which is licensed under the AGPL-3.0-only |
| 4 | +name: Request Help |
| 5 | +description: Request support |
| 6 | +body: |
| 7 | + - type: dropdown |
| 8 | + id: ce-or-ee |
| 9 | + attributes: |
| 10 | + label: Which flavour of the Mend Renovate Server are you running? |
| 11 | + options: |
| 12 | + - "Community Server (Community Edition / CE)" |
| 13 | + - "Enterprise Server (Enterprise Edition / EE)" |
| 14 | + validations: |
| 15 | + required: true |
| 16 | + |
| 17 | + - type: dropdown |
| 18 | + id: self-hosted-platform |
| 19 | + attributes: |
| 20 | + label: Which platform are you running Renovate on? |
| 21 | + options: |
| 22 | + - "GitHub.com" |
| 23 | + - "GitHub Enterprise Server" |
| 24 | + - "GitLab.com" |
| 25 | + - "GitLab.com Self-Managed" |
| 26 | + - "Bitbucket Data Center" |
| 27 | + validations: |
| 28 | + required: true |
| 29 | + |
| 30 | + - type: input |
| 31 | + id: self-hosted-version |
| 32 | + attributes: |
| 33 | + label: Which version of Renovate Community / Enterprise Server are you using? |
| 34 | + description: | |
| 35 | + Please do not say 'latest' version (as new releases may have shipped since the issue was raised), but instead note the exact version. |
| 36 | + validations: |
| 37 | + required: true |
| 38 | + |
| 39 | + - type: textarea |
| 40 | + id: the-question |
| 41 | + attributes: |
| 42 | + label: Please tell us more about your question or problem |
| 43 | + validations: |
| 44 | + required: true |
| 45 | + |
| 46 | + - type: textarea |
| 47 | + id: debug-logs |
| 48 | + attributes: |
| 49 | + label: Logs (if relevant) |
| 50 | + description: | |
| 51 | + Make sure you're running with `LOG_LEVEL=debug` in your environment variables and search for whatever dependency/branch/PR/functionality is causing the problem. |
| 52 | + Try to paste the *relevant* logs here, not the entire thing and not just a link to the dashboard (others don't have permissions to view them). |
| 53 | + If you're not sure about the relevant parts of the log, then feel free to post the full log to a [Github Gist](https://gist.github.com/) and link to it. |
| 54 | + Try to highlight the important logs into the issue itself. |
| 55 | + value: | |
| 56 | + <details><summary>Logs</summary> |
| 57 | +
|
| 58 | + ``` |
| 59 | +
|
| 60 | + Replace this text with your logs, between the starting and ending triple backticks |
| 61 | +
|
| 62 | + ``` |
| 63 | +
|
| 64 | + </details> |
| 65 | + validations: |
| 66 | + required: false |
0 commit comments