mirror of
https://github.com/dense-analysis/ale.git
synced 2026-09-27 14:12:20 +08:00
Only run actionlint on github workflow files (#5154)
* Add test to fail on dependabot.yml * Run only on .github/workflows
This commit is contained in:
@@ -5,8 +5,8 @@ call ale#Set('yaml_actionlint_executable', 'actionlint')
|
||||
call ale#Set('yaml_actionlint_options', '')
|
||||
|
||||
function! ale_linters#yaml#actionlint#GetCommand(buffer) abort
|
||||
" Only execute actionlint on YAML files in /.github/ paths.
|
||||
if expand('#' . a:buffer . ':p') !~# '\v[/\\]\.github[/\\]'
|
||||
" Only execute actionlint on YAML files in /.github/workflows/ paths.
|
||||
if expand('#' . a:buffer . ':p') !~# '\v[/\\]\.github[/\\]workflows[/\\]'
|
||||
return ''
|
||||
endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user