Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.54 KB

File metadata and controls

47 lines (31 loc) · 1.54 KB

✅ Contribution Guidelines Checker

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.

Installation

# 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-checker

This walks you through adding the workflow to your repository.

How It Works

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]
Loading

The workflow automatically runs on pull requests.

Usage

Configuration

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.

Human in the Loop

  • 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