mirror of
https://github.com/linux-system-roles/network.git
synced 2026-07-18 00:46:05 +00:00
Use github actions checkout @v7 Use codecov action @v7 Signed-off-by: Rich Megginson <rmeggins@redhat.com>
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
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:
|
|
if: |
|
|
!((github.event_name == 'pull_request' && contains(github.event.pull_request.title, '[citest_skip]')) ||
|
|
(github.event_name == 'push' && contains(github.event.head_commit.message, '[citest_skip]')))
|
|
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@v7
|
|
|
|
# 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
|