github.1485827954.workers.dev/nektos/act@v0.2.63/pkg/model/job_context.go (about)

     1  package model
     2  
     3  type JobContext struct {
     4  	Status    string `json:"status"`
     5  	Container struct {
     6  		ID      string `json:"id"`
     7  		Network string `json:"network"`
     8  	} `json:"container"`
     9  	Services map[string]struct {
    10  		ID string `json:"id"`
    11  	} `json:"services"`
    12  }