9f23f29942
Bumps [technote-space/get-diff-action](https://github.com/technote-space/get-diff-action) from 6.1.1 to 6.1.2. - [Release notes](https://github.com/technote-space/get-diff-action/releases) - [Changelog](https://github.com/technote-space/get-diff-action/blob/main/.releasegarc) - [Commits](https://github.com/technote-space/get-diff-action/compare/v6.1.1...v6.1.2) --- updated-dependencies: - dependency-name: technote-space/get-diff-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
30 lines
653 B
YAML
30 lines
653 B
YAML
name: Check Markdown links
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '**.md'
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- '**.md'
|
|
|
|
jobs:
|
|
markdown-link-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: technote-space/get-diff-action@v6.1.2
|
|
id: git_diff
|
|
with:
|
|
PATTERNS: |
|
|
**/**.md
|
|
- uses: gaurav-nelson/github-action-markdown-link-check@master
|
|
with:
|
|
folder-path: "docs"
|
|
check-modified-files-only: "yes"
|
|
use-quiet-mode: "yes"
|
|
base-branch: "main"
|
|
config-file: "mlc_config.json"
|
|
if: env.GIT_DIFF
|