mirror of
https://github.com/actions/runner.git
synced 2025-12-14 22:24:11 +00:00
First attempt at creating baseline code for composite actions
This commit is contained in:
@@ -66,6 +66,13 @@ namespace GitHub.Runner.Worker.Handlers
|
||||
handler = HostContext.CreateService<IRunnerPluginHandler>();
|
||||
(handler as IRunnerPluginHandler).Data = data as PluginActionExecutionData;
|
||||
}
|
||||
else if (data.ExecutionType == ActionExecutionType.Composite)
|
||||
{
|
||||
// Runner plugin
|
||||
handler = HostContext.CreateService<ICompositeHandler>();
|
||||
// handler = CompositeHandler;
|
||||
(handler as ICompositeHandler).Data = data as CompositeActionExecutionData;
|
||||
}
|
||||
else
|
||||
{
|
||||
// This should never happen.
|
||||
|
||||
Reference in New Issue
Block a user