Bump gaurav-nelson/github-action-markdown-link-check from 0f074c8562c5a8fed38282b7c741d1970bb1512d to 25b2c436c653f0d4500d3c2df86e5c14e71e44e1 #14
Workflow file for this run
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: markdown | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/markdown.yml' | |
- '.github/markdownlint.json' | |
- '.github/markdownlint.jsonc' | |
- '**/*.md' | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
markdown-lint: | |
name: Lint markdown files | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout devtools | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Register markdownlint warning matcher | |
run: | | |
echo "::add-matcher::.github/markdownlint.json" | |
- name: Lint markdown files | |
uses: avto-dev/markdown-lint@04d43ee9191307b50935a753da3b775ab695eceb # v1.5.0 | |
with: | |
args: '**/*.md' | |
config: '.github/markdownlint.jsonc' | |
ignore: 'third_party_licenses.md' | |
- name: Remove markdownlint warning matcher | |
if: always() | |
run: | | |
echo "::remove-matcher owner=markdownlint::" | |
- uses: gaurav-nelson/github-action-markdown-link-check@25b2c436c653f0d4500d3c2df86e5c14e71e44e1 # master | |
if: always() | |
with: | |
use-quiet-mode: 'yes' | |
use-verbose-mode: 'yes' | |
check-modified-files-only: 'yes' | |
base-branch: ${{ github.base_ref }} | |
config-file: '.github/markdown-link-check.jsonc' |