String replacement from `@github/actions-` to `@actions/`
13 lines
388 B
TypeScript
13 lines
388 B
TypeScript
import {DescriptionDictionary} from "@actions/expressions";
|
|
import {WorkflowContext} from "../context/workflow-context";
|
|
import {Mode} from "./default";
|
|
|
|
export type ContextProviderConfig = {
|
|
getContext: (
|
|
name: string,
|
|
defaultContext: DescriptionDictionary | undefined,
|
|
workflowContext: WorkflowContext,
|
|
mode: Mode
|
|
) => Promise<DescriptionDictionary | undefined>;
|
|
};
|