1+ name : 📚 Documentation Issue
2+ description : Report issues with documentation content, website, or deployment
3+ title : " [DOCS]: "
4+ labels : ["documentation", "triage"]
5+ assignees : []
6+
7+ body :
8+ - type : markdown
9+ attributes :
10+ value : |
11+ Thanks for helping improve the MetaObjects documentation!
12+
13+ Please provide details about the documentation issue you've encountered.
14+
15+ - type : dropdown
16+ id : issue-type
17+ attributes :
18+ label : Issue Type
19+ description : What type of documentation issue is this?
20+ options :
21+ - Content Error (incorrect information)
22+ - Missing Documentation (feature not documented)
23+ - Broken Link (internal or external link not working)
24+ - Code Example Error (example doesn't work)
25+ - Website Issue (styling, navigation, search problems)
26+ - Deployment Issue (documentation site not building/deploying)
27+ - Accessibility Issue (screen reader, keyboard navigation problems)
28+ - Performance Issue (slow loading, large files)
29+ - Mobile/Responsive Issue (doesn't work on mobile devices)
30+ - Other
31+ validations :
32+ required : true
33+
34+ - type : input
35+ id : page-url
36+ attributes :
37+ label : Page URL
38+ description : URL of the documentation page with the issue
39+ placeholder : " https://metaobjectsdev.github.io/metaobjects-core/user-guide/..."
40+ validations :
41+ required : false
42+
43+ - type : textarea
44+ id : description
45+ attributes :
46+ label : Description
47+ description : Detailed description of the issue
48+ placeholder : |
49+ Please describe:
50+ - What you expected to see or happen
51+ - What actually happened or what's wrong
52+ - Steps to reproduce (if applicable)
53+ - Browser/device information (for website issues)
54+ validations :
55+ required : true
56+
57+ - type : textarea
58+ id : current-content
59+ attributes :
60+ label : Current Content (if applicable)
61+ description : Copy/paste the current incorrect content
62+ render : markdown
63+ validations :
64+ required : false
65+
66+ - type : textarea
67+ id : suggested-content
68+ attributes :
69+ label : Suggested Fix/Content
70+ description : How should this be corrected or what content should be added?
71+ render : markdown
72+ validations :
73+ required : false
74+
75+ - type : textarea
76+ id : code-example
77+ attributes :
78+ label : Code Example (if applicable)
79+ description : If reporting a code example issue, paste the code that doesn't work
80+ render : java
81+ validations :
82+ required : false
83+
84+ - type : input
85+ id : framework-version
86+ attributes :
87+ label : MetaObjects Version
88+ description : Which version of the MetaObjects framework does this relate to?
89+ placeholder : " 6.2.0"
90+ validations :
91+ required : false
92+
93+ - type : checkboxes
94+ id : environment
95+ attributes :
96+ label : Environment (for website issues)
97+ description : Where did you encounter this issue?
98+ options :
99+ - label : Desktop browser (Chrome)
100+ - label : Desktop browser (Firefox)
101+ - label : Desktop browser (Safari)
102+ - label : Desktop browser (Edge)
103+ - label : Mobile browser (iOS Safari)
104+ - label : Mobile browser (Android Chrome)
105+ - label : Screen reader
106+ - label : Local development (mkdocs serve)
107+ - label : Documentation build process
108+
109+ - type : dropdown
110+ id : priority
111+ attributes :
112+ label : Priority
113+ description : How would you rate the severity of this issue?
114+ options :
115+ - Low (cosmetic, enhancement)
116+ - Medium (affects usability)
117+ - High (incorrect information, broken functionality)
118+ - Critical (documentation completely inaccessible)
119+ validations :
120+ required : true
121+
122+ - type : textarea
123+ id : additional-context
124+ attributes :
125+ label : Additional Context
126+ description : Any other information that might be helpful
127+ placeholder : |
128+ - Related issues or pages
129+ - Screenshots (if helpful)
130+ - Error messages
131+ - Browser console errors
132+ - Build logs (for deployment issues)
133+ validations :
134+ required : false
135+
136+ - type : checkboxes
137+ id : contribution
138+ attributes :
139+ label : Contribution
140+ description : Are you willing to help fix this issue?
141+ options :
142+ - label : I can provide a pull request to fix this issue
143+ - label : I can help test a fix for this issue
144+ - label : I can provide additional information if needed
145+
146+ - type : markdown
147+ attributes :
148+ value : |
149+ ---
150+
151+ ## 📚 Documentation Resources
152+
153+ - **Documentation Plan**: [docs/DOCUMENTATION_PLAN.md](https://github.com/metaobjectsdev/metaobjects-core/blob/main/docs/DOCUMENTATION_PLAN.md)
154+ - **Deployment Guide**: [docs/DEPLOYMENT.md](https://github.com/metaobjectsdev/metaobjects-core/blob/main/docs/DEPLOYMENT.md)
155+ - **Local Development**: [docs/README.md](https://github.com/metaobjectsdev/metaobjects-core/blob/main/docs/README.md)
156+ - **Writing Guidelines**: Available in DOCUMENTATION_PLAN.md
157+
158+ ## 🚀 Quick Fixes
159+
160+ **For content errors**: Most documentation content is in `docs/src/site/documentation/docs/`
161+ **For website issues**: Check `docs/src/site/documentation/mkdocs.yml` configuration
162+ **For deployment issues**: Review `.github/workflows/deploy-docs.yml` workflow
163+
164+ Thank you for helping improve the MetaObjects documentation! 🎉
0 commit comments