We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd2b620 commit 832bc68Copy full SHA for 832bc68
.github/workflows/yamllint.yaml
@@ -3,14 +3,24 @@ on:
3
pull_request:
4
paths:
5
- 'services/**'
6
+ - 'templates/**'
7
jobs:
8
yamllint:
9
name: 'Yamllint'
10
runs-on: ubuntu-latest
11
steps:
12
- name: 'Checkout'
13
uses: actions/checkout@master
- - name: 'Yamllint'
14
+ - name: 'Yamllint services'
15
+ uses: karancode/yamllint-github-action@master
16
+ with:
17
+ yamllint_file_or_dir: 'services'
18
+ yamllint_config_datapath: 'services/.yamllint'
19
+ yamllint_strict: false
20
+ yamllint_comment: true
21
+ env:
22
+ GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23
+ - name: 'Yamllint templates'
24
uses: karancode/yamllint-github-action@master
25
with:
26
yamllint_file_or_dir: 'templates'
0 commit comments