Skip to content

A Pokémon which digs in repository documentation

License

Notifications You must be signed in to change notification settings

TravelNest/diglett

Repository files navigation

Diglett

A Pokémon which digs in repository documentation and detect potentially outdated README.md. Diglett is a GitHub action and it checks:

  • When README.md was last modified.
  • Who did the last update and wheather the person is still member of the organization.
  • Number of commits pushed since the README.md was last modified.

Prints a short summary in the pull request review:

diglett
Hello hello,
I am Diglett and I dig in your documentation!

✅ 👤 GitHubUser last modified the README.md, who is still member of GitHub org.
✅ 📅 README.md was last modified: 2019-04-14T19:55:36Z
✅ #️⃣ Since then 5 commits were pushed

📝 Update your README.md and keep the repo up to dated!

Usage

Add digglet.yml into your .github/worflow directory in root of your github repo. Then on each pull request Diglett will check your repo documentation and post a comment in your PR review.

on: pull_request

jobs:
  digglet:
    runs-on: ubuntu-latest
    name: Diglett
    steps:
    - name: Diglett documentation check
      id: diglett
      uses: TravelNest/diglett@master
      with:
        TOKEN: ${{ secrets.GITHUB_TOKEN }}
        PR_NUMBER: ${{ github.event.pull_request.number }}
        MAX_COMMITS: 100
        MAX_DAYS: 50
    - name: Diglett result
      run: echo ${{ steps.diglett.outputs.OutputMessage }} 

TODO:

  • add tests
  • search for all README.md in repo
  • search for TODOs in code
  • add makefile with tests & lint

About

A Pokémon which digs in repository documentation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published