This repository has been archived by the owner on Aug 29, 2024. It is now read-only.
GH Pages Broken Link Checker #571
This file contains 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
# This is a basic workflow to help you get started with Actions | |
name: GH Pages Broken Link Checker | |
# Controls when the workflow will run | |
on: | |
# The schedule event allows you to trigger a workflow at a scheduled time. | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
broken_link_checker_job: | |
runs-on: ubuntu-latest | |
name: Check for broken links | |
steps: | |
- name: Check for broken links | |
id: link-report | |
uses: ScholliYT/Broken-Links-Crawler-Action@v3 | |
with: | |
website_url: 'https://microsoft.github.io/spring-cloud-azure/' | |
exclude_url_prefix: 'http://localhost:,http://HOST_NAME:,https://my.custom.endpoint.com:55300' | |
verbose: 'true' |