Skip to content

ODH Sync: MLflow v3.13.0 rebase #150

ODH Sync: MLflow v3.13.0 rebase

ODH Sync: MLflow v3.13.0 rebase #150

Workflow file for this run

name: External Link Checker
on:
schedule:
# Runs at 00:00 UTC every day
- cron: "0 13 * * *"
workflow_dispatch: # Allow manual runs
pull_request:
paths:
- ".github/workflows/link-checker.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
working-directory: docs
jobs:
check-external-links:
# Only run on the main repository
if: github.repository == 'mlflow/mlflow'
permissions:
contents: read
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: ./.github/actions/setup-node
- name: Install dependencies
run: |
npm ci
- name: Run external links checker
run: |
npm run check-links