Skip to content
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

chore: Set result in github summary default to true #81

Merged
merged 1 commit into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Options:
| `SIMPLE_OUTPUT` | Displays evaluation results without Introduced in `Layer` and `File Path` columns. | `true` |
| `COLOR_OUTPUT` | Colors are rendered in evaluation results when the `PRETTY_OUTPUT` option is enabled. | `true` |
| `ADDITIONAL_PARAMETERS` | Additional parameters/flags. Only [global](https://docs.lacework.com/onboarding/integrate-inline-scanner#global-flags) and [`image evalute`](https://docs.lacework.com/onboarding/integrate-inline-scanner#flags-for-image-evaluate) flags are supported. | |
| `RESULTS_IN_GITHUB_SUMMARY` | Display results in Github Summary. Further information [here](https://github.blog/2022-05-09-supercharging-github-actions-with-job-summaries/) | `false` |
| `RESULTS_IN_GITHUB_SUMMARY` | Display results in Github Summary. Further information [here](https://github.blog/2022-05-09-supercharging-github-actions-with-job-summaries/) | `true` |

# Environment variables

Expand Down
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ inputs:
description: "Additional parameters/flags. Only global and `image evalute` flags are supported."
required: false
RESULTS_IN_GITHUB_SUMMARY:
description: "Display results in github summary. (Default: false)"
description: "Display results in github summary. (Default: true)"
required: false
default: "false"
default: "true"
runs:
using: "docker"
image: "Dockerfile"
Expand Down
Loading