A11y Tickets

Accessibility Tickets for GitLab Issues

GitLab issues work well for accessibility remediation when the ticket is small enough for one owner, keeps the audit evidence, and gives QA a concrete retest path.

This is a ticket-writing workflow for known findings. It is not a GitLab integration, legal opinion, automated audit, or compliance certificate.

Draft a GitLab-ready accessibility issue

Open a realistic registration-form example in the generator, then copy the generated Markdown into a GitLab issue description. Replace the path, component, labels, and assignee details with your own project conventions.

Open the GitLab issue example in the generator

GitLab fields that help remediation

Recommended issue description

## User impact
[Who is affected, which task is blocked or slowed, and why it matters.]

## Evidence
- Source:
- Path or route:
- Component, selector, or content block:
- State tested:
- Original finding:

## Expected behavior
[What should happen for keyboard, screen reader, voice control, or low-vision users.]

## Actual behavior
[What happens now.]

## Steps to reproduce
1. Open ...
2. Navigate with ...
3. Observe ...

## Acceptance criteria
- [ ] The affected user task can be completed.
- [ ] The programmatic relationship, focus behavior, name, contrast, or announcement is correct.
- [ ] Manual retest passes with the relevant keyboard or assistive technology path.
- [ ] Automated scanner output is clean where the original evidence came from a scanner.

Label and milestone patterns

Labels should make triage easier without replacing the ticket content. Keep them boring and consistent so remediation reports can filter issues by owner, impact, and retest status.

Use milestones for release windows or remediation phases. Do not use a milestone as the only signal that a checkout-blocking issue is more urgent than a low-impact content cleanup.

Split issues by ownership

Example GitLab issue

Title:
[High] Registration: email error is not associated with the field after failed submit

Labels:
accessibility, bug, frontend, registration, needs-retest, blocks-task

User impact:
Keyboard and screen reader users may not discover why account creation failed because focus stays on the submit button and the email field does not expose the visible error message.

Evidence:
- Source: audit note
- Path: /register
- Component: AccountRegistrationForm
- State: invalid email after submit
- Manual context: keyboard only, NVDA/Firefox retest needed

Expected behavior:
The email field exposes the error message programmatically, and failed submit moves focus to a useful error summary or first invalid field.

Acceptance criteria:
- The invalid email error is referenced from the email input.
- Failed submit has predictable keyboard focus recovery.
- NVDA/Firefox announces the field error during retest.
- The registration flow can be corrected without a mouse.

Generate this GitLab issue draft

Related resources