nuclei-templates/.github/workflows/syntax-checking.yml

21 lines
450 B
YAML
Raw Normal View History

2021-05-15 14:30:13 +00:00
name: ❄️ YAML Lint
2020-05-24 21:48:15 +00:00
2023-01-05 10:56:27 +00:00
on:
pull_request:
2023-01-15 16:05:57 +00:00
paths:
- '**.yaml'
2023-01-05 10:56:27 +00:00
workflow_dispatch:
2020-05-24 21:48:15 +00:00
jobs:
build:
runs-on: ubuntu-latest
2024-03-02 09:35:40 +00:00
if: github.repository == 'projectdiscovery/nuclei-templates'
2020-05-24 21:48:15 +00:00
steps:
- uses: actions/checkout@v4
- name: Yamllint
uses: karancode/yamllint-github-action@v2.1.1
with:
yamllint_config_filepath: .yamllint
yamllint_strict: false
yamllint_comment: true