-
Notifications
You must be signed in to change notification settings - Fork 166
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
feat: support pr summary for benchmark output #138
Conversation
Provide support for PR Summary for benchmark output. Refer: benchmark-action#136
Please don't forgot to also update |
Of course! |
Along with documentation I also added the option to the |
src/write.ts
Outdated
]; | ||
}); | ||
|
||
core.summary.addHeading(`Benchmarks: ${name}`).addTable([headers, ...rows]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note this is missing the call to write()
to actually send the summary upstream to GitHub
core.summary.addHeading(`Benchmarks: ${name}`).addTable([headers, ...rows]).write();
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Just wanted to say - I'd also love this to be merged. Thanks for the good work guys. |
Yeah! Any suggestions or improvements that could get this merged sooner! |
See my only comment on the PR, but I'm not a maintainer of this project so can't merge. |
Co-authored-by: Michael Gasch <[email protected]>
Just committed! Thanks! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@ktrz hey, sorry for pinging you on this PR. Maybe you could review this and merge if everything looks good to you? |
Random comment, trying to be helpful: seems like this project would benefit from having you guys, that are already reviewers, [to be able to / feel able to] have the power to merge code into the main branch and do releases, given that @ktrz seems a bit busy these days. |
And not only this pullrequest, but the others waiting in line plus attention to some of the issues too... I was considering doing a soft fork of this project if this owner/maintainer situation is not addressed soon :-S |
Hey @EstebanBorai Thanks for your contribution. I'd love to merge this PR. I just need the CI errors to be addressed before I can do that. |
f2e739f
Hi @ktrz sorry for the delay! I just pushed fixes for tests and lint! |
Released in v1.16.0 |
@EstebanBorai @embano1 @ktrz The We are getting an |
Yes, @gaby. That seems to be an issue. Sorry for the oversight. Just released a new version with |
Thank you! 😁 |
Awesome! Im using it here: https://github.com/infinyon/fluvio/actions/runs/4347865829/attempts/1#summary-11804007347 |
Provide support for PR Summary for benchmark output.
Refer: #136