You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, compare will output differences between archives and baselines only to stdout and plain text.
However, it'd useful to have different (structured) formats - eg json- so the output can be post-processed afterward. That would enable an enriched PR decoration for example. On Github Actions:
aaw compare -a app/build/output/release/my.apk -b my.org.product.toml --json > comparison.json
# Convert with tools like https://github.com/haltcase/tablemark-cli or in bash with jq
markdown=$(convert_to_markdown comparison.json)
gh pr comment ${{ github.event.pull_request.number }} --body "$markdown" --edit-last
In addition, we could output markdown directly.
The text was updated successfully, but these errors were encountered:
Right now,
compare
will output differences between archives and baselines only tostdout
and plain text.However, it'd useful to have different (structured) formats - eg
json
- so the output can be post-processed afterward. That would enable an enriched PR decoration for example. On Github Actions:In addition, we could output markdown directly.
The text was updated successfully, but these errors were encountered: