๐ Daily Ad hoc QA
May 8, 2026 ยท View on GitHub
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/adhoc-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]
For scheduled runs, the workflow is skipped if there are already 8 or more open PRs with its title prefix, to avoid overwhelming maintainers.
Usage
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 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.