Use cname
dsl instead of resolve helper
#31791
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ❄️ YAML Lint | |
on: | |
pull_request: | |
paths: | |
- '**.yaml' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: github.repository == 'projectdiscovery/nuclei-templates' | |
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 |