doc: Mark release version as End of Life #1255
This file contains hidden or 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: Documentation | |
on: | |
push: | |
branches: [ release-7.x ] | |
pull_request: | |
branches: [ release-7.x ] | |
jobs: | |
markdown-check: | |
name: Check Markdown | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check links | |
uses: UmbrellaDocs/action-linkspector@v1 | |
with: | |
config_file: .github/workflows/lint/linkspector.yml | |
fail_on_error: 'true' | |
filter_mode: nofilter | |
- name: Lint | |
uses: DavidAnson/markdownlint-cli2-action@v17 | |
with: | |
config: .github/workflows/lint/rules.markdownlint.yml | |
globs: | | |
**/*.md | |
!.github/ISSUE_TEMPLATE/*.md |