Add ListPullRequestFiles
#607
Loading…
Reference in New Issue
There is no content yet.
Delete Branch "qwerty287/go-sdk:changed-files"
Deleting a branch is permanent. Although the deleted branch may exist for a short time before cleaning up, in most cases it CANNOT be undone. Continue?
Was added in
1dfa28ffa5
.@6543 @lunny @johlheiser Can you review this PR?
Could you add some test?
@lunny see
fcded84307
.@ -63,0 +63,4 @@
// ChangedFile is a changed file in a diff
type ChangedFile struct {
Filename string `json:"filename"`
PreviousFilename string `json:"previous_filename,omitempty"`
omitempty
is unnecessary to specify here, it's only used for marshalling JSON, not for unmarshalling(current use-case). Please remove it, as well for the other fields that have this tag.See
ed80485f88
Reviewers