Skip to content
Merged
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
3 changes: 2 additions & 1 deletion .github/workflows/osps-baseline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:
TOKEN: ${{ steps.app-token.outputs.token }}

- name: Scan all repos
run: privateer run --binaries-path /.privateer/bin --config .github/config.yml
run: privateer run --binaries-path /.privateer/bin --config .github/config.yml > /dev/null 2>&1

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wouldn't be good to show possible execution errors or would this also be in the log files listed below?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great question! Based on my local testing, those appear in the log files.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great. : ) Thanks for confirming.


- name: Print Result
if: success() || failure()
run: for file in evaluation_results/**/*.log; do echo $file; cat $file; echo; done
Loading