(ctx context.Context, id string)
| 37 | |
| 38 | type taskRoleStore interface { |
| 39 | GetTask(ctx context.Context, id string) (taskpkg.Task, error) |
| 40 | GetTaskRun(ctx context.Context, id string) (taskpkg.Run, error) |
| 41 | GetExecutionProfile(ctx context.Context, taskID string) (taskpkg.ExecutionProfile, error) |
| 42 | ListTaskRunsByStatus(ctx context.Context, statuses []taskpkg.RunStatus) ([]taskpkg.Run, error) |
no outgoing calls