I follow simplified code checking procedures for GIT, comments where developers add a message to the GITHUB web interface by saying @review pending by @user_a, @user_b ( user_a and user_b are valid GIT users ) for direct GIT COMMITs.
The reviewer later adds another post to the GITHUB web interface, saying @reviewed by @reviewer_a .
The idea is to determine how many COMMIT has been tested without any reviews. GIT PULL requests are a good place to talk, but I'm looking for every COMMIT message to have a message like @reviewed by... as the last message.
I can list all the commits added to the repository in the last week using git log --oneline --graph --after="1 week ago" . But it does not show comments / posts added from the GITHUB web interface by the requester and reviewers.
Is there a way to list conversations in one COMMIT / parse these conversations / messages added to the GITHUB web interface?
Thanks,
source share