chore(github): tune stale and dependabot settings (#967) #212
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
--- | |
name: Check Markdown links | |
on: | |
# Temporarily disabled job on PRs. Re-enable when docs are fixed. | |
# pull_request: | |
# paths: | |
# - "**.md" | |
push: | |
branches: | |
- master | |
- v[0-9]+.[0-9]+-dev | |
jobs: | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: technote-space/get-diff-action@v6 | |
with: | |
PATTERNS: | | |
**/**.md | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
check-modified-files-only: "yes" | |
config-file: ".md-link-check.json" | |
if: env.GIT_DIFF |