A hint: This file contains one or more very long lines, so maybe it is better readable using the pure text view mode that shows the contents as wrapped lines within the browser window.
1 name: Request a cherry-pick. 2 description: As a contributor, you would like to request that a feature be cherry-picked into a release. 3 title: '[CP] <title>' 4 labels: ['cp: review'] 5 body: 6 - type: input 7 id: issue_link 8 attributes: 9 label: issue_link 10 description: What is the link to the issue this cherry-pick is addressing? 11 validations: 12 required: true 13 - type: input 14 id: commit_hash 15 attributes: 16 label: Commit Hash 17 description: What is the shortened commit hash that has been merged to master/main? 18 validations: 19 required: true 20 - type: dropdown 21 id: Target 22 attributes: 23 label: Target 24 description: Should this be cherry-picked to beta or stable? 25 options: 26 - stable 27 - beta 28 validations: 29 required: true 30 - type: input 31 id: pr_link 32 attributes: 33 label: pr_link 34 description: >- 35 Link to an open PR that cherrypick's this into the target release branch. 36 The current branches can be found under release-caniddate-branch.version for [beta](https://github.com/flutter/flutter/blob/beta/bin/internal/release-candidate-branch.version) and [stable](https://github.com/flutter/flutter/blob/stable/bin/internal/release-candidate-branch.version) 37 validations: 38 required: true 39 - type: input 40 id: impacted_users 41 attributes: 42 label: Impacted Users 43 description: Approximately who will hit this issue (ex. all Flutter devs, Windows developers, all end-customers, apps using X framework feature)? 44 validations: 45 required: true 46 - type: textarea 47 id: impact_description 48 attributes: 49 label: Impact Description 50 description: What is the impact (ex. visual jank on Samsung phones, app crash, cannot ship an iOS app)? Does it impact development (ex. flutter doctor crashes when Android Studio is installed), or the shipping production app (the app crashes on launch) 51 validations: 52 required: true 53 - type: textarea 54 id: workaround 55 attributes: 56 label: Workaround 57 description: Is there a workaround for this issue? 58 validations: 59 required: true 60 - type: dropdown 61 id: risk 62 attributes: 63 label: Risk 64 description: What is the risk level of this cherry-pick? 65 options: 66 - low 67 - medium 68 - high 69 validations: 70 required: true 71 - type: dropdown 72 id: test_coverage 73 attributes: 74 label: Test Coverage 75 description: Are you confident that your fix is well-tested by automated tests? 76 options: 77 - "yes" 78 - "no" 79 validations: 80 required: true 81 - type: textarea 82 id: fix_steps 83 attributes: 84 label: Validation Steps 85 description: What are the steps to validate that this fix works?