TechWiz-3 / linksafe

πŸ”— Scan links in your repo to ensure they are valid. Works in private repos!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Linksafe

Scan your repo for broken links. Whitelist links or files you wish to ignore. Works in private repos. Designed to be ideal for awesome-lists!

⚑ Check out the fast branch if you want lightning fast checking for large volumes and very short run time.

Example usage

name: Link-check
on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Run linksafe
        uses: TechWiz-3/linksafe@main
        with: # comma seperated lists
          # use relative paths, if no dirs specified root dir is scanned
          dirs: ".,./src,./src/data,./tests,./tests/pylint"
          # set to false by default
          verbose: true
          whitelist_links: "https://xyz.xyz"
          # use relative paths
          whitelist_files: "./doc/HACKING.md"

More info

https://example.com and http://localhost are automatically ignored

Each directory to be scanned must be specified directly, otherwise only the root dir will be scanned and subdirs will be ignored. At the same time, if you want the root dir AND subdirs to be scanned, remember to include a . as part of the list.

Files and or links can be whitelisted i.e. ignored.

Please note, with repos with a lot of links, a scan can take a LONG time, even up to 40+ minutes. If you wish scans to be no longer than a minute or two, use the fast branch.

Todo

  • In depth error handling for user inputs (if they go wrong)
  • Recognition of removed yt videos
  • Emoji HTTP code (optional)
  • Enforce HTTPS option
  • Allow bad SSL cert option
  • Possible repo replacements, aliases or moves if a gh repo link fails
  • 429 error code

πŸŽ‰ Commit labels

If you're interested in the commit labels used in this repo, check out my git emoji project

About

πŸ”— Scan links in your repo to ensure they are valid. Works in private repos!

License:GNU General Public License v3.0


Languages

Language:Python 89.2%Language:Shell 8.1%Language:Dockerfile 2.7%