Skip to content

Commit d5d08b0

Browse files
authored
Merge pull request #337 from ojeda/templates
GitHub: add some issue template categories
2 parents 98ddd34 + a664f26 commit d5d08b0

File tree

5 files changed

+70
-2
lines changed

5 files changed

+70
-2
lines changed

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
name: Bug
3+
about: Related to runtime bugs, panics, warnings...
4+
labels: bug
5+
---
6+
**Description**
7+
<!-- What the bug is and/or how to reproduce it.
8+
9+
Some common details that are typically useful to know are below -- please fill/remove as needed.
10+
11+
Other details that may be useful to know, if relevant:
12+
- Deterministic or not?
13+
- Does it happen under QEMU, a VM, a real machine, etc.?
14+
-->
15+
16+
17+
**Architecture(s)**
18+
- `arm`
19+
- `arm64`
20+
- `ppc64le`
21+
- `riscv64`
22+
- `x86_64`
23+
24+
25+
**Toolchain versions**
26+
- `rustc`:
27+
- `bindgen`:
28+
- LLVM/Clang:
29+
- GCC:
30+
- QEMU:
31+
32+
33+
**Kernel log**
34+
<details><summary><strong>Kernel log</strong></summary>
35+
<p>
36+
37+
```text
38+
Paste it here -- feel free to reduce it to the relevant parts.
39+
```
40+
41+
</p>
42+
</details>
43+
44+
45+
**Kernel config**
46+
<details><summary><strong>Kernel config</strong></summary>
47+
<p>
48+
49+
```text
50+
Paste it here -- feel free to reduce it to the relevant parts.
51+
```
52+
53+
</p>
54+
</details>

.github/ISSUE_TEMPLATE/building.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: Building
3+
about: Related to building the kernel, `make`, `Kbuild`, `Kconfig` options...
4+
labels: • kbuild
5+
---

.github/ISSUE_TEMPLATE/code.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
name: Code
3+
about: Related to code, `rust/`, `drivers/`...
4+
---

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
blank_issues_enabled: true
22

33
contact_links:
4-
- name: General discussions, help, feedback, etc.
4+
- name: Questions, help, feedback, etc.
55
url: https://github.com/Rust-for-Linux/linux/blob/rust/README.md
66
about: Please use the mailing list or the Zulip chat.
77

8-
- name: Report a security vulnerability
8+
- name: Security vulnerability
99
url: https://www.kernel.org/doc/html/latest/admin-guide/security-bugs.html
1010
about: If the code is already in mainline, read this link.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: Documentation
3+
about: Related to documentation, `rustdoc`, `Documentation/rust/`, `samples/`, typos...
4+
labels: • docs
5+
---

0 commit comments

Comments
 (0)