2023-08-15 15:43:21 +02:00
|
|
|
---
|
|
|
|
# yamllint disable rule:line-length
|
|
|
|
name: Markdown Lint
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
|
|
pull_request:
|
|
|
|
merge_group:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
types:
|
|
|
|
- checks_requested
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
jobs:
|
|
|
|
markdownlint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-08-29 12:46:38 +02:00
|
|
|
- name: Update git
|
2023-08-15 15:43:21 +02:00
|
|
|
run: |
|
|
|
|
set -euxo pipefail
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install -y git
|
|
|
|
|
|
|
|
- name: Check out code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2023-08-29 10:00:14 +02:00
|
|
|
# CHANGELOG.md is generated automatically from PR titles and descriptions
|
|
|
|
# It might have issues but they are not critical
|
|
|
|
- name: Lint all markdown files except for CHANGELOG.md
|
2023-08-15 15:43:21 +02:00
|
|
|
uses: docker://avtodev/markdown-lint:master
|
|
|
|
with:
|
2023-08-29 10:00:14 +02:00
|
|
|
args: >-
|
|
|
|
--ignore=CHANGELOG.md
|
|
|
|
--ignore=tests/roles/ansible-sshd/CHANGELOG.md
|
|
|
|
**/*.md
|
2023-08-15 15:43:21 +02:00
|
|
|
config: .markdownlint.yaml
|