PowerShell Daily Markdown Link Verification #589
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
# Copyright (c) Microsoft Corporation. | |
# Licensed under the MIT license. | |
name: PowerShell Daily Markdown Link Verification | |
on: | |
workflow_dispatch: | |
schedule: | |
# At 13:00 UTC every day. | |
- cron: '0 13 * * *' | |
permissions: | |
contents: read | |
jobs: | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
if: github.repository == 'PowerShell/PowerShell' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check Links | |
uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-quiet-mode: 'yes' | |
use-verbose-mode: 'yes' | |
config-file: .github/workflows/markdown-link/config.json | |
- name: Microsoft Teams Notifier | |
uses: skitionek/notify-microsoft-teams@master | |
if: failure() | |
with: | |
webhook_url: ${{ secrets.PS_BUILD_TEAMS_CHANNEL }} | |
overwrite: "{title: `Failure in .github/markdownLinkDaily.yml validating links. Look at ${workflow_link}`}" |