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.
# Install the 'gh aw' extension
gh extension install github/gh-aw
# Add the workflow to your repository
gh aw add-wizard githubnext/agentics/daily-qaThis walks you through adding the workflow to your repository.
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]
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.
You can start a run of this workflow immediately by running:
gh aw run daily-qaTo 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.