-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow for specific includes and excludes #2
Comments
Could this include the - name: Shellcheck
uses: bewuethr/shellcheck-action@v2
with:
external_sources: .env
severity: info
include: [CODE1, CODE2]
exclude: [CODE4, CODE5] |
Replace bewuethr/shellcheck-action with reviewdog/action-shellcheck due to the former not supporting sending arguments to shellcheck: bewuethr/shellcheck-action#2
Replace bewuethr/shellcheck-action with reviewdog/action-shellcheck due to the former not supporting sending arguments to shellcheck: bewuethr/shellcheck-action#2
Replace bewuethr/shellcheck-action with reviewdog/action-shellcheck due to the former not supporting sending arguments to shellcheck: bewuethr/shellcheck-action#2
@asbjornu Definitely a good suggestion 🙂 I've spun it out into its own issue. This issue here is meant to include/exclude specific files, which is more of a function of how the action finds the files to check (with a somewhat convoluted |
I see. Since shellcheck has its own include/exclude arguments, I assumed that was it. I'll subscribe to #4 and follow up there, then. Thanks! |
Add action parameters that allow to include and exclude specific files to be checked/ignored.
The text was updated successfully, but these errors were encountered: