mirror of
https://github.com/go-gitea/gitea.git
synced 2025-08-29 20:12:54 +09:00
feat: parse workflows
This commit is contained in:
@ -15,12 +15,13 @@ type RunJob struct {
|
||||
ID int64
|
||||
RunID int64
|
||||
Name string
|
||||
WorkflowPayload string `xorm:"LONGTEXT"`
|
||||
WorkflowPayload []byte
|
||||
Needs []int64 `xorm:"JSON TEXT"`
|
||||
RunsOn []string `xorm:"JSON TEXT"`
|
||||
TaskID int64 // the latest task of the job
|
||||
Status core.BuildStatus `xorm:"index"`
|
||||
StartTime timeutil.TimeStamp
|
||||
EndTime timeutil.TimeStamp
|
||||
Started timeutil.TimeStamp
|
||||
Stopped timeutil.TimeStamp
|
||||
Created timeutil.TimeStamp `xorm:"created"`
|
||||
Updated timeutil.TimeStamp `xorm:"updated"`
|
||||
}
|
||||
|
Reference in New Issue
Block a user