Skip to content

Validate docs on schedule #3

Validate docs on schedule

Validate docs on schedule #3

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