code.vegaprotocol.io/vega@v0.79.0/.github/ISSUE_TEMPLATE/bug_report.yml (about) 1 --- 2 3 name: Bug Report 4 description: File a bug report 5 title: "[Bug]: " 6 labels: ["bug"] 7 assignees: 8 - gordsport 9 10 body: 11 - type: markdown 12 attributes: 13 value: | 14 Thanks for taking the time to fill out this bug report! 15 16 - type: textarea 17 id: bug 18 attributes: 19 label: Problem encountered 20 description: "A clear and concise description of what the bug is." 21 validations: 22 required: true 23 24 - type: textarea 25 id: observed 26 attributes: 27 label: Observed behaviour 28 description: "A clear and concise description of how the system is behaving." 29 validations: 30 required: true 31 32 - type: textarea 33 id: expected 34 attributes: 35 label: Expected behaviour 36 description: "A clear and concise description of what you expected to happen as per the AC or spec." 37 validations: 38 required: true 39 40 - type: textarea 41 id: reproduce 42 attributes: 43 label: Steps to reproduce 44 description: "Detail the steps to reproduce the behaviour, or any additional information related to the observed behavior." 45 value: | 46 1. Submit `xyz` transaction 47 2. With this payload 48 3. Query `abc` API 49 4. Observe the error 50 render: bash 51 validations: 52 required: true 53 54 - type: input 55 id: version 56 attributes: 57 label: Software version 58 description: "Please software version or commit hash the bug is seen on." 59 validations: 60 required: true 61 62 - type: input 63 id: test-case 64 attributes: 65 label: Failing test 66 description: "Please specify the path to the failing test." 67 validations: 68 required: false 69 70 - type: input 71 id: jenkins 72 attributes: 73 label: Jenkins run 74 description: "Please specify the Jenkins run URL." 75 validations: 76 required: false 77 78 - type: textarea 79 id: config 80 attributes: 81 label: Configuration used 82 description: "Please detail the configuration used when seeing this bug. This will be automatically formatted into code, so no need for backticks." 83 render: shell 84 validations: 85 required: false 86 87 - type: textarea 88 id: logs 89 attributes: 90 label: Relevant log output 91 description: "Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks." 92 render: shell 93 validations: 94 required: false