-
Notifications
You must be signed in to change notification settings - Fork 31
58 lines (53 loc) · 1.27 KB
/
pr-lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Doc Lint
on:
push:
branches:
- main
- release-*
- gh-pages
paths:
- '**.md'
- '**.yml'
- '**.yaml'
pull_request:
branches:
- main
- release-*
- gh-pages
paths:
- '**.md'
- '**.yml'
- '**.yaml'
# checkout all markdown
workflow_dispatch:
inputs:
ref:
description: 'check all md for branch, sha, tag'
required: true
default: main
jobs:
markdown-link-check:
name: Markdown Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: actions/checkout@v3
with:
ref: ${{ github.event.inputs.ref }}
- name: Checkout
if: ${{ github.event_name != 'workflow_dispatch' }}
uses: actions/checkout@v3
# - name: markdownlint-cli
# uses: nosborn/[email protected]
# with:
# files: .
# config_file: '.github/markdownlint.yaml'
# ignore_path: '.github/markdownlintignore'
- name: yaml-lint
id: yaml-lint
continue-on-error: true
uses: ibiqlik/action-yamllint@v3
with:
file_or_dir: '.'
config_file: '.github/yamllint-conf.yml'