Merge pull request #159 from projectdiscovery/nikhil-admin-copy-updates #462
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Broken link check | |
on: [push, workflow_dispatch] | |
jobs: | |
broken_link_checker_job: | |
runs-on: ubuntu-latest | |
name: Check for broken links | |
steps: | |
- name: Check for broken links | |
id: link-report | |
uses: celinekurpershoek/link-checker@v1.0.2 | |
with: | |
# Required: | |
url: "https://docs.projectdiscovery.io" | |
# optional: | |
honorRobotExclusions: true | |
ignorePatterns: "github,google" | |
recursiveLinks: false # Check all URLs on all reachable pages (could take a while) | |
- name: Get the result | |
run: echo "${{steps.link-report.outputs.result}}" |