Newbie Contributor Patrol¶
Review docs from a new contributor perspective and file high-impact issues.
Workflow source: gh-aw-newbie-contributor-patrol.md
How it works¶
Reads all contributor-facing documentation (README, CONTRIBUTING, DEVELOPING, etc.) as if it were a new contributor's first encounter with the project. Follows getting-started paths, checks for missing prerequisites, and flags blocking gaps. Only files issues for high-impact problems; most runs end with noop.
Quick Install¶
mkdir -p .github/workflows && curl -sL \
https://raw.githubusercontent.com/elastic/ai-github-actions/v0/gh-agent-workflows/newbie-contributor-patrol/example.yml \
-o .github/workflows/newbie-contributor-patrol.yml
Trigger¶
| Event | Schedule |
|---|---|
schedule |
Weekly (Monday) |
workflow_dispatch |
Manual |
Inputs¶
| Input | Description | Required | Default |
|---|---|---|---|
additional-instructions |
Repo-specific instructions appended to the agent prompt | No | "" |
setup-commands |
Shell commands run before the agent starts | No | "" |
allowed-bot-users |
Allowlisted bot actor usernames (comma-separated) | No | github-actions[bot] |
Safe Outputs¶
create-issue— file a new contributor docs review (max 1, auto-closes older reports)
Pairing¶
This workflow is the detector half. Pair with Newbie Contributor Fixer to automatically fix the issues it finds.
Example Workflow¶
name: Newbie Contributor Patrol
on:
schedule:
- cron: "0 11 * * 1"
workflow_dispatch:
permissions:
contents: read
issues: write
pull-requests: read
jobs:
run:
uses: elastic/ai-github-actions/.github/workflows/gh-aw-newbie-contributor-patrol.lock.yml@v0
secrets:
COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }}