Skip to content
This repository was archived by the owner on May 5, 2021. It is now read-only.

Commit cbb18bb

Browse files
authored
Add YAML Lint Action
1 parent cf6c092 commit cbb18bb

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/YAMLLint.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: 'YAML Lint'
2+
on:
3+
- pull_request
4+
jobs:
5+
yamllint:
6+
name: 'YAML Lint'
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: 'Checkout'
10+
uses: actions/checkout@master
11+
- name: 'YAML Lint'
12+
uses: karancode/yamllint-github-action@master
13+
with:
14+
yamllint_strict: false
15+
yamllint_comment: true
16+
env:
17+
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)