Skip to content

Add GitHub Actions workflows for CI/CD automation #8

Add GitHub Actions workflows for CI/CD automation

Add GitHub Actions workflows for CI/CD automation #8

Workflow file for this run

name: "Check Documentation Links"
on:
push:
branches: [ "main" ]
paths:
- 'docs/**'
- '**/*.md'
pull_request:
branches: [ "main" ]
paths:
- 'docs/**'
- '**/*.md'
schedule:
# Run weekly on Monday at 00:00 UTC
- cron: '0 0 * * 1'
workflow_dispatch:
permissions:
contents: read
issues: write
jobs:
link-checker:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Check Links in Markdown Files
uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
use-verbose-mode: 'no'
config-file: '.github/markdown-link-check-config.json'
folder-path: '.'
max-depth: -1
check-modified-files-only: 'no'