add a interface descripton to each task

This commit is contained in:
Robin Olsen
2026-03-11 19:39:03 +01:00
parent 102f718726
commit 5919333fd3
16 changed files with 92 additions and 40 deletions

View File

@@ -42,7 +42,7 @@ func NewTaskRunner(app *App) *TaskRunner {
func (r *TaskRunner) Run(ctx context.Context, t Tasker, i Interface, iType InterfaceType) (runErr error) {
config := t.Config()
details := t.Details()
details := t.Details(iType)
lifecycle := NewRunLifecycle(r.app, config, details, iType, r.logger)