Skip to content

Docs Reviewer Quickstart

Set up automated documentation review in your GitHub repository in under 5 minutes.

EkLine’s Docs Reviewer agent catches style, grammar, and terminology issues in your documentation before they merge. This guide gets you from zero to automated PR reviews in under 5 minutes.

  • Automated documentation review on every Pull Request
  • Inline comments pointing to specific issues
  • Style guide enforcement (Google, Microsoft, or custom)
  • Merge blocking for critical violations
  1. Get your EkLine token

    Sign up at ekline.io and copy your integration token from the Dashboard.

  2. Add the token to your repository

    Go to your GitHub repository:

    Settings → Secrets and variables → Actions → New repository secret

    • Name: EK_TOKEN
    • Value: paste your token
  3. Create the workflow file

    Create .github/workflows/ekline.yml in your repository:

    name: EkLine Docs Review
    on:
    pull_request:
    jobs:
    review-docs:
    runs-on: ubuntu-latest
    permissions:
    contents: read
    pull-requests: write
    steps:
    - uses: actions/checkout@v4
    - uses: ekline-io/ekline-github-action@v6
    with:
    content_dir: ./docs
    ek_token: ${{ secrets.EK_TOKEN }}
    github_token: ${{ secrets.GITHUB_TOKEN }}
    reporter: github-pr-review
  4. Open a Pull Request

    Commit the workflow file and open a PR with documentation changes. EkLine will automatically review and comment on any issues.

EkLine is now reviewing your documentation on every PR. You see inline comments like:

EK00042: Consider using active voice. “The configuration is loaded” → “Load the configuration”

filter_mode: added
filter_mode: file
exclude-directories: "node_modules,tests,vendor"
style-guide: "./.ekline-style-guide.yml"

See the full GitHub Integration guide for all options.