mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
e11de9dbeb
* chore(ci): add yamllint action * Create .yamllint.yml * Update verify-yaml.yml * Update verify-yaml.yml * Update verify-yaml.yml * Update verify-yaml.yml * Update verify-yaml.yml * correct yaml format * correct yamllint findings * disable truthy rule * add pattern for workflows yamls * fix c&p issue
23 lines
372 B
YAML
23 lines
372 B
YAML
name: "Documentation"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- '**/*.md'
|
|
|
|
jobs:
|
|
markdownlint:
|
|
runs-on: ubuntu-latest
|
|
name: 'Format'
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Markdown Linting
|
|
uses: nosborn/github-action-markdown-cli@v1.1.1
|
|
with:
|
|
files: .
|