-
Notifications
You must be signed in to change notification settings - Fork 249
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Feature: Add support for --ignore-unfixed #9
Comments
Hi @zoispag Got your point. What about taking the advantage of the fact that running trivy as
is equivalent of
Having said that, I believe you could define a new optional input param and set its default value to
WDYT? |
I will give it a try right away and I will let you know. Thanks for the immediate response @danielpacak . |
It works. I will open a PR right away :) |
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Would it be possible to add support for
--ignore-unfixed
flag in the action?I tried many things but I haven't figured it out the proper syntax yet to open a Pull Request.
So far I've tried:
- '${{ inputs.ignore-unfixed == true && echo --ignore-unfixed }}'
- '${{ inputs.ignore-unfixed }} == true && echo "--ignore-unfixed"'
- '${{ inputs.ignore-unfixed }} == "true" && echo "--ignore-unfixed"'
&- '${{ inputs.ignore-unfixed == "true" && echo "--ignore-unfixed" }}'
Not sure how these
${{ }}
are expanded. Any help is appreciated.The text was updated successfully, but these errors were encountered: