We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9afe48 commit 87677d0Copy full SHA for 87677d0
.github/workflows/yamllint.yml
@@ -0,0 +1,19 @@
1
+name: 'Yamllint GitHub Actions'
2
+on:
3
+ - pull_request
4
+jobs:
5
+ yamllint:
6
+ name: 'Yamllint'
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: 'Checkout'
10
+ uses: actions/checkout@master
11
+ - name: 'Yamllint'
12
+ uses: karancode/yamllint-github-action@master
13
+ with:
14
+ yamllint_file_or_dir: 'librarylist.yaml'
15
+ yamllint_strict: false
16
+ yamllint_comment: true
17
+ yamllint_config_filepath: 'yamllint-config.yml'
18
+ env:
19
+ GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments