Shouldn't review results show as events #358
matheusfillipe
started this conversation in
Ideas
Replies: 1 comment 2 replies
-
Thanks for the feedback. These are the current events that are shown in Octo octo.nvim/lua/octo/model/octo-buffer.lua Lines 177 to 205 in 24a1718 elseif item.__typename == "AssignedEvent" then
writers.write_assigned_event(self.bufnr, item)
prev_is_event = true
elseif item.__typename == "PullRequestCommit" then
writers.write_commit_event(self.bufnr, item)
prev_is_event = true
elseif item.__typename == "MergedEvent" then
writers.write_merged_event(self.bufnr, item)
prev_is_event = true
elseif item.__typename == "ClosedEvent" then
writers.write_closed_event(self.bufnr, item)
prev_is_event = true
elseif item.__typename == "ReopenedEvent" then
writers.write_reopened_event(self.bufnr, item)
prev_is_event = true
elseif item.__typename == "LabeledEvent" then
table.insert(unrendered_labeled_events, item)
elseif item.__typename == "UnlabeledEvent" then
table.insert(unrendered_unlabeled_events, item)
elseif item.__typename == "ReviewRequestedEvent" then
writers.write_review_requested_event(self.bufnr, item)
prev_is_event = true
elseif item.__typename == "ReviewRequestRemovedEvent" then
writers.write_review_request_removed_event(self.bufnr, item)
prev_is_event = true
elseif item.__typename == "ReviewDismissedEvent" then
writers.write_review_dismissed_event(self.bufnr, item)
prev_is_event = true
end There are plenty of events though:
Showing new events should be very simple, just add new Would you be willing to send a PR for this? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It is common to have multiple reviews from different persons over the time with different status from each one like
changes requested
orapproved
.Is it currently possible to show those in the events list. I find it just not enough to have this in the summary. Would this be a desired feature?
Beta Was this translation helpful? Give feedback.
All reactions