Skip to content

Tags: codelake-dev/licscan-action

Tags

v1.0.0

Toggle v1.0.0's commit message
fix(action): default log format = table, not markdown

Markdown in a CI workflow log renders as raw text — '| Risk | ... |'
syntax that looks like broken plain text. It only renders nicely on
targets that have a Markdown engine (GitHub PR comments, READMEs,
Slack).

The action already produces the markdown report file as a separate
side-effect (used for the PR comment and uploaded as the artifact);
the 'format' input only controls what gets echoed into the workflow
log. Default switched from 'markdown' to 'table' so the log is
human-readable by default. Users who want raw markdown in the log
(maybe to grep it from another tool) can still set 'format: markdown'
explicitly.

v1

Toggle v1's commit message
fix(action): default log format = table, not markdown

Markdown in a CI workflow log renders as raw text — '| Risk | ... |'
syntax that looks like broken plain text. It only renders nicely on
targets that have a Markdown engine (GitHub PR comments, READMEs,
Slack).

The action already produces the markdown report file as a separate
side-effect (used for the PR comment and uploaded as the artifact);
the 'format' input only controls what gets echoed into the workflow
log. Default switched from 'markdown' to 'table' so the log is
human-readable by default. Users who want raw markdown in the log
(maybe to grep it from another tool) can still set 'format: markdown'
explicitly.