Skip to content

Latest commit

 

History

History
50 lines (32 loc) · 1.5 KB

File metadata and controls

50 lines (32 loc) · 1.5 KB

🔍 Daily Ad hoc QA

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

Perform ad hoc quality assurance by following README instructions, tutorials, and walkthroughs

The Daily Ad hoc QA workflow reads your documentation, follows instructions, tests build and run processes, and creates issues for 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-qa

This walks you through adding the workflow to your repository.

How It Works

graph LR
    A[Read README/Tutorials] --> B[Follow Instructions]
    B --> C[Test Build/Run]
    C --> D{Issues Found?}
    D -->|Yes| E[Create QA Issue]
    D -->|No| F[Report: QA Passed]
Loading

Usage

Configuration

This workflow requires no configuration and works out of the box. You can customize QA tasks, testing scenarios, reporting format, and frequency.

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-qa

Triggering CI on Pull Requests

To automatically trigger CI checks on PRs created by this workflow, configure an additional repository secret GH_AW_CI_TRIGGER_TOKEN. See the triggering CI documentation for setup instructions.