mirror of
https://github.com/deviantony/docker-elk.git
synced 2026-03-30 13:46:51 +02:00
32 lines
681 B
YAML
32 lines
681 B
YAML
name: Documentation
|
|
|
|
on:
|
|
push:
|
|
branches: [ release-8.x ]
|
|
pull_request:
|
|
branches: [ release-8.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@v19
|
|
with:
|
|
config: .github/workflows/lint/rules.markdownlint.yml
|
|
globs: |
|
|
**/*.md
|
|
!.github/ISSUE_TEMPLATE/*.md
|