Skip to content

Commit 1567acf

Browse files
taylorarndtCopilot
andcommitted
Add wiki issue report template
Structured form template that asks: - Which wiki page has the problem - Type of issue (dropdown: wrong info, broken image, formatting, link, a11y, etc.) - What is wrong / what it should say instead - How they were viewing it (browser, screen reader, keyboard, mobile) - Which assistive technology if applicable - Steps to reproduce - Anything else Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent ea0aa4d commit 1567acf

File tree

1 file changed

+93
-0
lines changed

1 file changed

+93
-0
lines changed
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
name: Wiki Issue
2+
description: Report a problem with a wiki page — wrong info, broken content, missing section, or accessibility issue
3+
labels: ["wiki", "needs triage"]
4+
assignees: ["taylorarndt"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for helping improve the wiki! Answer as many questions as you can — every detail helps us find and fix the problem faster.
10+
11+
- type: input
12+
id: page
13+
attributes:
14+
label: Which wiki page has the issue?
15+
description: Paste the URL or the page title
16+
placeholder: "e.g. https://github.com/Community-Access/git-going-with-github/wiki/03-the-learning-room"
17+
validations:
18+
required: true
19+
20+
- type: dropdown
21+
id: issue-type
22+
attributes:
23+
label: What kind of problem is it?
24+
options:
25+
- Wrong or outdated information
26+
- Broken or missing image / diagram
27+
- Formatting looks broken
28+
- Link is broken or goes to the wrong place
29+
- Content is hard to understand
30+
- Accessibility issue (screen reader, keyboard, contrast)
31+
- Missing content or section
32+
- Something else
33+
validations:
34+
required: true
35+
36+
- type: textarea
37+
id: what-is-wrong
38+
attributes:
39+
label: What is wrong?
40+
description: Describe exactly what you see that looks incorrect or broken
41+
placeholder: "e.g. The diagram image doesn't load, it shows a broken image icon instead of the SVG..."
42+
validations:
43+
required: true
44+
45+
- type: textarea
46+
id: what-expected
47+
attributes:
48+
label: What should it look like or say instead?
49+
description: Tell us what the correct content or behaviour should be
50+
placeholder: "e.g. The diagram should show a tree structure of the repository layout..."
51+
validations:
52+
required: false
53+
54+
- type: dropdown
55+
id: how-accessing
56+
attributes:
57+
label: How were you viewing the wiki?
58+
options:
59+
- GitHub website (browser)
60+
- GitHub mobile app
61+
- Screen reader (NVDA, JAWS, VoiceOver, etc.)
62+
- Keyboard only (no mouse)
63+
- Other assistive technology
64+
validations:
65+
required: false
66+
67+
- type: input
68+
id: assistive-tech
69+
attributes:
70+
label: If you use a screen reader or assistive technology, which one?
71+
placeholder: "e.g. NVDA with Firefox, VoiceOver with Safari, JAWS with Chrome"
72+
validations:
73+
required: false
74+
75+
- type: textarea
76+
id: steps
77+
attributes:
78+
label: Steps to reproduce
79+
description: How do we find the problem ourselves?
80+
placeholder: |
81+
1. Go to the wiki page...
82+
2. Scroll to the section...
83+
3. The image / link / text shows...
84+
validations:
85+
required: false
86+
87+
- type: textarea
88+
id: anything-else
89+
attributes:
90+
label: Anything else we should know?
91+
description: Screenshots, extra context, or related pages with the same issue
92+
validations:
93+
required: false

0 commit comments

Comments
 (0)