2026-03-03 03:02:56 +00:00
|
|
|
export type ChangedScope = {
|
|
|
|
|
runNode: boolean;
|
|
|
|
|
runMacos: boolean;
|
|
|
|
|
runAndroid: boolean;
|
2026-03-22 12:58:08 -07:00
|
|
|
runWindows: boolean;
|
|
|
|
|
runSkillsPython: boolean;
|
|
|
|
|
runChangedSmoke: boolean;
|
2026-04-06 04:16:18 +01:00
|
|
|
runControlUiI18n: boolean;
|
2026-03-03 03:02:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export function detectChangedScope(changedPaths: string[]): ChangedScope;
|
|
|
|
|
export function listChangedPaths(base: string, head?: string): string[];
|
|
|
|
|
export function writeGitHubOutput(scope: ChangedScope, outputPath?: string): void;
|