mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-23 10:25:28 +00:00
- Consistently generate badges for GH workflows in README RHELPLAN-146921 - Run markdownlint on all .md files - Add custom-woke-action if not used already - Use woke from linux-system-roles/lsr-woke-action Signed-off-by: Sergei Petrosian <spetrosi@redhat.com>
38 lines
914 B
YAML
38 lines
914 B
YAML
---
|
|
# 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:
|
|
- name: Update pip, git
|
|
run: |
|
|
set -euxo pipefail
|
|
sudo apt update
|
|
sudo apt install -y git
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v3
|
|
|
|
# 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
|
|
uses: docker://avtodev/markdown-lint:master
|
|
with:
|
|
args: >-
|
|
--ignore=CHANGELOG.md
|
|
**/*.md
|
|
config: .markdownlint.yaml
|