Skip to content

Commit bce34e8

Browse files
authored
campaigns: add a preparing step progress message (#401)
1 parent a1721db commit bce34e8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

internal/campaigns/run_steps.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ func runSteps(ctx context.Context, wc *WorkspaceCreator, repo *graphql.Repositor
6666
results := make([]StepResult, len(steps))
6767

6868
for i, step := range steps {
69+
reportProgress(fmt.Sprintf("Preparing step %d", i+1))
70+
6971
stepContext := StepContext{Repository: *repo}
7072
if i > 0 {
7173
stepContext.PreviousStep = results[i-1]

0 commit comments

Comments
 (0)