mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-24 20:10:20 +01:00
65cb76028f
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
39 lines
967 B
YAML
39 lines
967 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 git
|
|
run: |
|
|
set -euxo pipefail
|
|
sudo apt update
|
|
sudo apt install -y git
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v4
|
|
|
|
# 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
|
|
--ignore=tests/roles/ansible-sshd/CHANGELOG.md
|
|
**/*.md
|
|
config: .markdownlint.yaml
|