Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 1.24 KB

File metadata and controls

46 lines (30 loc) · 1.24 KB

🔍 Daily Accessibility Review

For an overview of all available workflows, see the main README.

Perform accessibility reviews checking for WCAG 2.2 compliance and documenting problems found

The Daily Accessibility Review workflow scans your repository, analyzes accessibility against WCAG 2.2 guidelines, and creates issues documenting any accessibility problems found.

Installation

# Install the 'gh aw' extension
gh extension install github/gh-aw

# Add the workflow to your repository
gh aw add-wizard githubnext/agentics/daily-accessibility-review

This walks you through adding the workflow to your repository.

How It Works

graph LR
    A[Scan Repository] --> B[Analyze Accessibility]
    B --> C[Check WCAG 2.2]
    C --> D{Issues Found?}
    D -->|Yes| E[Create Issue Report]
    D -->|No| F[Report: All Accessible]
Loading

Usage

Configuration

This workflow requires no configuration and works out of the box.

After editing run gh aw compile to update the workflow and commit all changes to the default branch.

Commands

You can start a run of this workflow immediately by running:

gh aw run daily-accessibility-review