mirror of
https://github.com/step-security/harden-runner.git
synced 2026-06-05 19:53:33 +00:00
24 lines
566 B
TypeScript
24 lines
566 B
TypeScript
export interface Configuration {
|
|
repo: string;
|
|
run_id: string;
|
|
correlation_id: string;
|
|
working_directory: string;
|
|
api_url: string;
|
|
allowed_endpoints: string;
|
|
egress_policy: string;
|
|
disable_telemetry: boolean;
|
|
disable_sudo: boolean;
|
|
disable_file_monitoring: boolean;
|
|
is_github_hosted: boolean;
|
|
private: string;
|
|
}
|
|
|
|
export interface PolicyResponse {
|
|
owner?: string;
|
|
policyName?: string;
|
|
allowed_endpoints?: string[];
|
|
disable_sudo?: boolean;
|
|
disable_file_monitoring?: boolean;
|
|
disable_telemetry?: boolean;
|
|
egress_policy?: string;
|
|
}
|