For an overview of all available workflows, see the main README.
Verify incoming pull requests comply with repository contribution guidelines
The Contribution Guidelines Checker workflow reviews incoming PRs against your CONTRIBUTING.md and similar documentation, then either labels the PR as ready or provides constructive feedback on what needs improvement.
# Install the 'gh aw' extension
gh extension install github/gh-aw
# Add the workflow to your repository
gh aw add-wizard githubnext/agentics/contribution-guidelines-checkerThis walks you through adding the workflow to your repository.
graph LR
A[PR Created/Updated] --> B[Read CONTRIBUTING.md]
B --> C[Review PR Content]
C --> D{Guidelines Met?}
D -->|Yes| E[Add contribution-ready Label]
D -->|No| F[Comment with Feedback]
The workflow automatically runs on pull requests.
This workflow requires no configuration and works out of the box. It automatically reviews contribution guidelines documents and checks PRs against them.
After editing run gh aw compile to update the workflow and commit all changes to the default branch.
- Review feedback provided by the workflow for accuracy
- Follow up on PRs that need improvements
- Update contribution guidelines based on common patterns
- Manually apply labels if the workflow's assessment needs adjustment