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
To integrate this action into a tight feedback loop with my devs, I wanted to have a comment on each PR containing the latest run of this action, like a lot of tools do (Codecov, SonarCloud, Vercel, ...). I cannot do that today because this action only allows me to post a comment on each commit which is really not a good DX IMO.
The issue here is that this action does not provide any way of retrieving the Markdown text it would put in the commit comments. More, considering the Job Summary PR, it is using another textual representation of the results.
It would be really great to have a common Markdown representation of the results: the code will be simpler because only one code to rule them all, and anybody wanting to create a custom integration could re-use it directly. This can be done through a custom temporary file containing the Markdown, or an action output directly.
The create-or-update-comment action by Peter Evans enables to do it with custom content very easily, we could end with something like:
Hi @jeremylvln
I'm working on this issue which should probably resolve your use case. However, I think having a common markdown representation and add it to the output of the action would be beneficial for other integrations. I'm putting this on my todo list :)
BTW: in PR #159 I've unified the commit comment and the job summary output. The one difference is that in commit comment it wraps the detailed info in an expandable section to limit the visual load of the comment
Hi!
To integrate this action into a tight feedback loop with my devs, I wanted to have a comment on each PR containing the latest run of this action, like a lot of tools do (Codecov, SonarCloud, Vercel, ...). I cannot do that today because this action only allows me to post a comment on each commit which is really not a good DX IMO.
The issue here is that this action does not provide any way of retrieving the Markdown text it would put in the commit comments. More, considering the Job Summary PR, it is using another textual representation of the results.
It would be really great to have a common Markdown representation of the results: the code will be simpler because only one code to rule them all, and anybody wanting to create a custom integration could re-use it directly. This can be done through a custom temporary file containing the Markdown, or an action output directly.
The create-or-update-comment action by Peter Evans enables to do it with custom content very easily, we could end with something like:
The text was updated successfully, but these errors were encountered: