runAfterRun method

Future<WorkspaceHookOutcome> runAfterRun(
  1. Workspace workspace
)

Runs the configured after_run hook. Failures are swallowed per spec.

Implementation

Future<WorkspaceHookOutcome> runAfterRun(Workspace workspace) {
  return hookRunner.run(
    kind: WorkspaceHookKind.afterRun,
    workspacePath: workspace.path,
    hooks: hooksConfig,
  );
}