2024-04-25 14:05:02 +00:00
|
|
|
name: 'Yamllint GitHub Actions'
|
2024-04-25 13:52:52 +00:00
|
|
|
on:
|
2024-04-25 14:05:02 +00:00
|
|
|
- pull_request
|
2024-04-25 13:52:52 +00:00
|
|
|
jobs:
|
2024-04-25 14:05:02 +00:00
|
|
|
yamllint:
|
|
|
|
name: 'Yamllint'
|
2024-04-25 13:52:52 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-04-25 14:05:02 +00:00
|
|
|
- name: 'Checkout'
|
|
|
|
uses: actions/checkout@master
|
|
|
|
- name: 'Yamllint'
|
|
|
|
uses: karancode/yamllint-github-action@master
|
2024-04-25 13:57:06 +00:00
|
|
|
with:
|
2024-04-25 14:05:02 +00:00
|
|
|
yamllint_file_or_dir: 'gallery'
|
|
|
|
yamllint_strict: false
|
|
|
|
yamllint_comment: true
|
|
|
|
env:
|
|
|
|
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|