|
| 1 | +name: "🐛 Bug report" |
| 2 | +type: "Bug" |
| 3 | +description: Create a bug report to help us improve |
| 4 | + |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + **Never report security issues on GitHub or other public channels (Gitter/Twitter/etc.)** |
| 10 | + Follow these instruction to report security issues: https://www.jenkins.io/security/#reporting-vulnerabilities |
| 11 | +
|
| 12 | + - type: textarea |
| 13 | + attributes: |
| 14 | + label: Jenkins and plugins versions report |
| 15 | + description: | |
| 16 | + For easier bug reporting, you can get the full list of plugins with this Groovy script that you can run in **Jenkins > Manage Jenkins > Script Console**: |
| 17 | + ```groovy |
| 18 | + println("Jenkins: ${Jenkins.instance.getVersion()}") |
| 19 | + println("OS: ${System.getProperty('os.name')} - ${System.getProperty('os.version')}") |
| 20 | + println "---" |
| 21 | +
|
| 22 | + Jenkins.instance.pluginManager.plugins |
| 23 | + .collect() |
| 24 | + .sort { it.getShortName() } |
| 25 | + .each { |
| 26 | + plugin -> println("${plugin.getShortName()}:${plugin.getVersion()}") |
| 27 | + } |
| 28 | + return |
| 29 | + ``` |
| 30 | + placeholder: | |
| 31 | + Jenkins: 2.326 |
| 32 | + OS: Linux - 3.10.0-1160.45.1.el7.x86_64 |
| 33 | + --- |
| 34 | + ace-editor:1.1 |
| 35 | + ant:1.13 |
| 36 | + antisamy-markup-formatter:2.5 |
| 37 | + apache-httpcomponents-client-4-api:4.5.13-1.0 |
| 38 | + authentication-tokens:1.4 |
| 39 | + bootstrap4-api:4.6.0-3 |
| 40 | + bootstrap5-api:5.1.3-4 |
| 41 | + bouncycastle-api:2.25 |
| 42 | + ... |
| 43 | + value: | |
| 44 | + <details> |
| 45 | + <summary>Environment</summary> |
| 46 | +
|
| 47 | + <!-- Paste your environment details below --> |
| 48 | + ```text |
| 49 | + Paste the output here |
| 50 | + ``` |
| 51 | +
|
| 52 | + </details> |
| 53 | + validations: |
| 54 | + required: true |
| 55 | + |
| 56 | + - type: textarea |
| 57 | + attributes: |
| 58 | + label: What Operating System are you using (both controller, and any agents involved in the problem)? |
| 59 | + validations: |
| 60 | + required: true |
| 61 | + |
| 62 | + - type: textarea |
| 63 | + attributes: |
| 64 | + label: Reproduction steps |
| 65 | + description: | |
| 66 | + Write bullet-point reproduction steps. |
| 67 | + Be explicit about any relevant configuration, jobs, build history, user accounts, etc., redacting confidential information as needed. |
| 68 | + The best reproduction steps start with a clean Jenkins install, perhaps a `docker run` command if possible. |
| 69 | + Use screenshots where appropriate, copy textual output otherwise. When in doubt, do both. |
| 70 | + Include relevant logs, debug if needed - https://www.jenkins.io/doc/book/system-administration/viewing-logs/ |
| 71 | + placeholder: | |
| 72 | + 1. Step 1: ... |
| 73 | + 2. Step 2: ... |
| 74 | + validations: |
| 75 | + required: true |
| 76 | + |
| 77 | + - type: textarea |
| 78 | + attributes: |
| 79 | + label: Expected Results |
| 80 | + description: What was your expected result? |
| 81 | + validations: |
| 82 | + required: true |
| 83 | + |
| 84 | + - type: textarea |
| 85 | + attributes: |
| 86 | + label: Actual Results |
| 87 | + description: What was the actual result? |
| 88 | + validations: |
| 89 | + required: true |
| 90 | + |
| 91 | + - type: textarea |
| 92 | + attributes: |
| 93 | + label: Anything else? |
| 94 | + description: You can provide additional context below. |
0 commit comments