Compare commits

..

1 Commits

Author SHA1 Message Date
Ebtasam Faridy 1865866bee feat:[CI-18739]: fixing float error casued by template update 2025-10-14 16:13:52 +05:30
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -378,9 +378,9 @@ func run(c *cli.Context) error {
Event: c.String("build.event"),
Status: c.String("build.status"),
Link: c.String("build.link"),
Created: c.Int64("build.created"),
Started: c.Int64("build.started"),
Finished: c.Int64("build.finished"),
Created: float64(c.Int64("build.created")),
Started: float64(c.Int64("build.started")),
Finished: float64(c.Int64("build.finished")),
},
Prev: Prev{
Build: PrevBuild{
+3 -3
View File
@@ -50,9 +50,9 @@ type (
Event string
Status string
Link string
Created int64
Started int64
Finished int64
Created float64
Started float64
Finished float64
}
PrevBuild struct {