You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git checkout -b [branch-name] # Create and switch to branch
git branch -a # List all branches
git branch -d [branch-name] # Delete local branch
git push origin [branch-name] # Push branch to GitHub
Staging and Committing
git status # See what changed
git add [file] # Stage specific file
git add .# Stage all changes
git commit -m "message"# Commit with message
git push origin [branch-name] # Push commits
Pulling Updates
git pull origin main # Pull latest from your fork
git pull upstream main # Pull latest from upstream
git fetch upstream # Fetch without merging
name: Your Template Namedescription: One line descriptiontitle: "[TAG] "labels: ["label1", "label2"]body:
- type: markdownattributes:
value: | ## Before you begin Please search for existing issues.
- type: inputid: versionattributes:
label: Version Numberplaceholder: "e.g., v2.4.1"validations:
required: true
- type: textareaid: descriptionattributes:
label: Descriptiondescription: Explain what happenedplaceholder: "I was trying to... then..."validations:
required: true
- type: dropdownid: browserattributes:
label: Browseroptions:
- Chrome
- Firefox
- Safarivalidations:
required: true
- type: checkboxesid: checksattributes:
label: Before Submittingoptions:
- label: I searched for existing issuesrequired: true
Accessibility Testing Checklist (Quick)
All form labels announced by screen reader
Required fields marked and announced as required
Dropdown options readable and selectable
No labels skipped (heading hierarchy: 1→2→3, not 1→3)
Link text is descriptive (not "click here")
Color not the only way to convey information
Tested on: NVDA JAWS VoiceOver
Common YAML Errors & Fixes
Error
Cause
Fix
Red squiggles on colons
Missing colon after key
Add : after field name
Indentation errors
Mixed spaces/tabs
Use spaces only (2 or 4)
Unmatched quotes
Missing closing quote
Check all " have closing pair
Field not showing
Wrong type: or missing id:
Verify field has all required properties
Dropdown no options
Missing options: list
Add options: with indented list
Where to Find Help
Topic
File
Troubleshooting
TROUBLESHOOTING.md
Resources & setup
docs/appendix-u-resources.md
Glossary & terms
docs/appendix-a-glossary.md
Screen reader guide
docs/appendix-b-screen-reader-cheatsheet.md
Accessibility Hotkeys Summary
NVDA + JAWS (same): Browse web content with H (headings), T (tables), B (buttons), L (lists) VoiceOver: Use VO+U to open rotor, then navigate by category (Headings, Links, Form Controls) VS Code: F7 = Accessible Diff, Alt+F2 = Accessible View
Last updated: February 2026 | For latest, see README.md