ludeeus / action-shellcheck

GitHub action for ShellCheck.
MIT License
292 stars 69 forks source link

Clarify is globbing is allowed when ignoring paths and names #94

Closed lindhe closed 1 year ago

lindhe commented 1 year ago

Checklist

The idea

The documentation should be clearer (with examples) whether or not ignore_paths and ignore_names can take glob patterns and/or regex.

Implementation

If it's not supported, clarify that.

If it is supported, include an example like:

    ...
    - name: Run ShellCheck
      uses: ludeeus/action-shellcheck@master
      with:
        ignore_paths: >-
          ignoreme
          ignoremetoo
        ignore_names: >-
          ignorable.sh
          .zsh*
lindhe commented 1 year ago

I tried it. Seems like it's supported! :)

ludeeus commented 1 year ago

It's passed to find, so what that support is supported.