uboot-rockchip: Update to 2024.01
[openwrt/openwrt.git] / target / linux / bcm27xx / patches-6.1 / 950-0368-Use-GitHubs-issue-form-for-bug-reports.patch
1 From b9bf4e573a1e07ef999636cdb61f393df61cc447 Mon Sep 17 00:00:00 2001
2 From: Andreas Blaesius <andi@unlegacy-android.org>
3 Date: Wed, 5 Jan 2022 20:38:39 +0100
4 Subject: [PATCH] Use GitHubs issue form for bug reports
5
6 Use GitHubs issue form for bug reports.
7
8 - modern look
9 - user don't need to mess with given markdown parts while filling the issue template
10
11 Setup config.yml for general questions and problems with the Raspbian distribution packages.
12 ---
13 .github/ISSUE_TEMPLATE/bug_report.md | 34 ----------
14 .github/ISSUE_TEMPLATE/bug_report.yml | 91 +++++++++++++++++++++++++++
15 .github/ISSUE_TEMPLATE/config.yml | 9 +++
16 3 files changed, 100 insertions(+), 34 deletions(-)
17 delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md
18 create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml
19 create mode 100644 .github/ISSUE_TEMPLATE/config.yml
20
21 --- a/.github/ISSUE_TEMPLATE/bug_report.md
22 +++ /dev/null
23 @@ -1,34 +0,0 @@
24 ----
25 -name: Bug report
26 -about: Create a report to help us fix your issue
27 -
28 ----
29 -
30 -**Is this the right place for my bug report?**
31 -This repository contains the Linux kernel used on the Raspberry Pi. If you believe that the issue you are seeing is kernel-related, this is the right place. If not, we have other repositories for the GPU firmware at [github.com/raspberrypi/firmware](https://github.com/raspberrypi/firmware) and Raspberry Pi userland applications at [github.com/raspberrypi/userland](https://github.com/raspberrypi/userland). If you have problems with the Raspbian distribution packages, report them in the [github.com/RPi-Distro/repo](https://github.com/RPi-Distro/repo). If you simply have a question, then [the Raspberry Pi forums](https://www.raspberrypi.org/forums) are the best place to ask it.
32 -
33 -**Describe the bug**
34 -Add a clear and concise description of what you think the bug is.
35 -
36 -**To reproduce**
37 -List the steps required to reproduce the issue.
38 -
39 -**Expected behaviour**
40 -Add a clear and concise description of what you expected to happen.
41 -
42 -**Actual behaviour**
43 -Add a clear and concise description of what actually happened.
44 -
45 -**System**
46 - Copy and paste the results of the raspinfo command in to this section. Alternatively, copy and paste a pastebin link, or add answers to the following questions:
47 -
48 -* Which model of Raspberry Pi? e.g. Pi3B+, PiZeroW
49 -* Which OS and version (`cat /etc/rpi-issue`)?
50 -* Which firmware version (`vcgencmd version`)?
51 -* Which kernel version (`uname -a`)?
52 -
53 -**Logs**
54 -If applicable, add the relevant output from `dmesg` or similar.
55 -
56 -**Additional context**
57 -Add any other relevant context for the problem.
58 --- /dev/null
59 +++ b/.github/ISSUE_TEMPLATE/bug_report.yml
60 @@ -0,0 +1,91 @@
61 +name: "Bug report"
62 +description: Create a report to help us fix your issue
63 +body:
64 +- type: markdown
65 + attributes:
66 + value: |
67 + **Is this the right place for my bug report?**
68 + This repository contains the Linux kernel used on the Raspberry Pi.
69 + If you believe that the issue you are seeing is kernel-related, this is the right place.
70 + If not, we have other repositories for the GPU firmware at [github.com/raspberrypi/firmware](https://github.com/raspberrypi/firmware) and Raspberry Pi userland applications at [github.com/raspberrypi/userland](https://github.com/raspberrypi/userland).
71 +
72 + If you have problems with the Raspbian distribution packages, report them in the [github.com/RPi-Distro/repo](https://github.com/RPi-Distro/repo).
73 + If you simply have a question, then [the Raspberry Pi forums](https://www.raspberrypi.org/forums) are the best place to ask it.
74 +
75 +- type: textarea
76 + id: description
77 + attributes:
78 + label: Describe the bug
79 + description: |
80 + Add a clear and concise description of what you think the bug is.
81 + validations:
82 + required: true
83 +
84 +- type: textarea
85 + id: reproduce
86 + attributes:
87 + label: Steps to reproduce the behaviour
88 + description: |
89 + List the steps required to reproduce the issue.
90 + validations:
91 + required: true
92 +
93 +- type: dropdown
94 + id: model
95 + attributes:
96 + label: Device (s)
97 + description: On which device you are facing the bug?
98 + multiple: true
99 + options:
100 + - Raspberry Pi Zero
101 + - Raspberry Pi Zero W / WH
102 + - Raspberry Pi Zero 2 W
103 + - Raspberry Pi 1 Mod. A
104 + - Raspberry Pi 1 Mod. A+
105 + - Raspberry Pi 1 Mod. B
106 + - Raspberry Pi 1 Mod. B+
107 + - Raspberry Pi 2 Mod. B
108 + - Raspberry Pi 2 Mod. B v1.2
109 + - Raspberry Pi 3 Mod. A+
110 + - Raspberry Pi 3 Mod. B
111 + - Raspberry Pi 3 Mod. B+
112 + - Raspberry Pi 4 Mod. B
113 + - Raspberry Pi 400
114 + - Raspberry Pi CM1
115 + - Raspberry Pi CM3
116 + - Raspberry Pi CM3 Lite
117 + - Raspberry Pi CM3+
118 + - Raspberry Pi CM3+ Lite
119 + - Raspberry Pi CM4
120 + - Raspberry Pi CM4 Lite
121 + - Other
122 + validations:
123 + required: true
124 +
125 +- type: textarea
126 + id: system
127 + attributes:
128 + label: System
129 + description: |
130 + Copy and paste the results of the raspinfo command in to this section.
131 + Alternatively, copy and paste a pastebin link, or add answers to the following questions:
132 + * Which OS and version (`cat /etc/rpi-issue`)?
133 + * Which firmware version (`vcgencmd version`)?
134 + * Which kernel version (`uname -a`)?
135 + validations:
136 + required: true
137 +
138 +- type: textarea
139 + id: logs
140 + attributes:
141 + label: Logs
142 + description: |
143 + If applicable, add the relevant output from `dmesg` or similar.
144 +
145 +- type: textarea
146 + id: additional
147 + attributes:
148 + label: Additional context
149 + description: |
150 + Add any other relevant context for the problem.
151 +
152 --- /dev/null
153 +++ b/.github/ISSUE_TEMPLATE/config.yml
154 @@ -0,0 +1,9 @@
155 +blank_issues_enabled: false
156 +contact_links:
157 + - name: "â›” Question"
158 + url: https://www.raspberrypi.org/forums
159 + about: "Please do not use GitHub for asking questions. If you simply have a question, then the Raspberry Pi forums are the best place to ask it. Thanks in advance for helping us keep the issue tracker clean!"
160 + - name: "â›” Problems with the Raspbian distribution packages"
161 + url: https://github.com/RPi-Distro/repo
162 + about: "If you have problems with the Raspbian distribution packages, please report them in the github.com/RPi-Distro/repo."
163 +