#1087 restore and modify 12.4.1 - file execution as program code with direct http request #767
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 Linter | |
on: | |
# Scan changed files in PRs (diff-aware scanning): | |
pull_request: {} | |
# Scan mainline branches and report all findings: | |
push: | |
branches: ["master", "main"] | |
jobs: | |
markdown-lint-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: markdownlint-cli | |
uses: nosborn/github-action-markdown-cli@v2.0.0 | |
with: | |
files: './5.0*' | |
config_file: ".markdownlint.jsonc" | |
ignore_files: "tools, templates, images" |