We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f61d1c commit a6ff0eaCopy full SHA for a6ff0ea
1 file changed
cmd/github2orgmode/github2orgmode.go
@@ -55,6 +55,7 @@ func main() {
55
// I do not want them to show up in the daily agenda
56
o = append(o, fmt.Sprintf("\tCreated : %s", i.GetCreatedAt()))
57
o = append(o, fmt.Sprintf("\tUpdated : %s", i.GetUpdatedAt()))
58
+ o = append(o, fmt.Sprintf("\tCreator : %s", i.GetUser().GetLogin()))
59
for _, a := range i.Assignees {
60
o = append(o, fmt.Sprintf("\tAssignee : %s", a.GetLogin()))
61
}
0 commit comments