We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66a3dc0 commit 97f12d9Copy full SHA for 97f12d9
VERSION
@@ -1 +1 @@
1
-0.26.1
+0.26.2
pkg/codefresh/gitops.go
@@ -1,6 +1,9 @@
package codefresh
2
3
-import "fmt"
+import (
4
+ "fmt"
5
+ "time"
6
+)
7
8
type (
9
GitopsAPI interface {
@@ -57,8 +60,9 @@ type (
57
60
}
58
61
59
62
Commit struct {
- Message *string `json:"message"`
- Avatar *string `json:"avatar"`
63
+ Time *time.Time `json:"time,omitempty"`
64
+ Message *string `json:"message"`
65
+ Avatar *string `json:"avatar"`
66
67
68
EnvironmentActivityRS struct {
0 commit comments