Skip to content

Validate docs on schedule #7

Validate docs on schedule

Validate docs on schedule #7

name: Validate docs on schedule
on:
workflow_dispatch:
schedule:
- cron: "0 12 * * 1" # Runs at 12:00, only on Monday
jobs:
validate-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate docs
uses: ./.github/actions/validate
with:
orphan-checker-directory: tutorials
base-branch-name: main
slack-webhook-url: ${{ secrets.SLACK_WEBHOOK_DOCS }}