/** * Subscribes to broad GitHub Actions workflow-run activity. * * @param options - GitHub App installation selection. */ export declare const onGitHubWorkflowRunEvent: import("../../../automation/create-trigger").TriggerFactory<{ readonly account: { readonly connectionOptions: readonly [{ readonly requiredScopes: readonly ["actions:read"]; }]; readonly serviceId: "github"; }; readonly type: "github.workflow-run.event"; }>; /** * Subscribes to requested GitHub Actions workflow runs. * * @param options - GitHub App installation selection. */ export declare const onGitHubWorkflowRunRequested: import("../../../automation/create-trigger").TriggerFactory<{ readonly account: { readonly connectionOptions: readonly [{ readonly requiredScopes: readonly ["actions:read"]; }]; readonly serviceId: "github"; }; readonly type: "github.workflow-run.requested"; }>; /** * Subscribes when GitHub Actions workflow runs start. * * @param options - GitHub App installation selection. */ export declare const onGitHubWorkflowRunStarted: import("../../../automation/create-trigger").TriggerFactory<{ readonly account: { readonly connectionOptions: readonly [{ readonly requiredScopes: readonly ["actions:read"]; }]; readonly serviceId: "github"; }; readonly type: "github.workflow-run.started"; }>; /** * Subscribes to completed GitHub Actions workflow runs of any conclusion. * * @param options - GitHub App installation selection. */ export declare const onGitHubWorkflowRunCompleted: import("../../../automation/create-trigger").TriggerFactory<{ readonly account: { readonly connectionOptions: readonly [{ readonly requiredScopes: readonly ["actions:read"]; }]; readonly serviceId: "github"; }; readonly type: "github.workflow-run.completed"; }>; /** * Subscribes to successful GitHub Actions workflow runs. * * @param options - GitHub App installation selection. */ export declare const onGitHubWorkflowRunSucceeded: import("../../../automation/create-trigger").TriggerFactory<{ readonly account: { readonly connectionOptions: readonly [{ readonly requiredScopes: readonly ["actions:read"]; }]; readonly serviceId: "github"; }; readonly type: "github.workflow-run.succeeded"; }>; /** * Subscribes to failed GitHub Actions workflow runs. * * @param options - GitHub App installation selection. */ export declare const onGitHubWorkflowRunFailed: import("../../../automation/create-trigger").TriggerFactory<{ readonly account: { readonly connectionOptions: readonly [{ readonly requiredScopes: readonly ["actions:read"]; }]; readonly serviceId: "github"; }; readonly type: "github.workflow-run.failed"; }>; /** * Subscribes to cancelled GitHub Actions workflow runs. * * @param options - GitHub App installation selection. */ export declare const onGitHubWorkflowRunCancelled: import("../../../automation/create-trigger").TriggerFactory<{ readonly account: { readonly connectionOptions: readonly [{ readonly requiredScopes: readonly ["actions:read"]; }]; readonly serviceId: "github"; }; readonly type: "github.workflow-run.cancelled"; }>; /** Subscribes to GitHub Actions workflow runs requiring action. */ export declare const onGitHubWorkflowRunActionRequired: import("../../../automation/create-trigger").TriggerFactory<{ readonly account: { readonly connectionOptions: readonly [{ readonly requiredScopes: readonly ["actions:read"]; }]; readonly serviceId: "github"; }; readonly type: "github.workflow-run.action-required"; }>; /** Subscribes to GitHub Actions workflow runs with a neutral conclusion. */ export declare const onGitHubWorkflowRunNeutral: import("../../../automation/create-trigger").TriggerFactory<{ readonly account: { readonly connectionOptions: readonly [{ readonly requiredScopes: readonly ["actions:read"]; }]; readonly serviceId: "github"; }; readonly type: "github.workflow-run.neutral"; }>; /** Subscribes to skipped GitHub Actions workflow runs. */ export declare const onGitHubWorkflowRunSkipped: import("../../../automation/create-trigger").TriggerFactory<{ readonly account: { readonly connectionOptions: readonly [{ readonly requiredScopes: readonly ["actions:read"]; }]; readonly serviceId: "github"; }; readonly type: "github.workflow-run.skipped"; }>; /** Subscribes to stale GitHub Actions workflow runs. */ export declare const onGitHubWorkflowRunStale: import("../../../automation/create-trigger").TriggerFactory<{ readonly account: { readonly connectionOptions: readonly [{ readonly requiredScopes: readonly ["actions:read"]; }]; readonly serviceId: "github"; }; readonly type: "github.workflow-run.stale"; }>; /** Subscribes to GitHub Actions workflow runs that fail during startup. */ export declare const onGitHubWorkflowRunStartupFailed: import("../../../automation/create-trigger").TriggerFactory<{ readonly account: { readonly connectionOptions: readonly [{ readonly requiredScopes: readonly ["actions:read"]; }]; readonly serviceId: "github"; }; readonly type: "github.workflow-run.startup-failed"; }>; /** Subscribes to timed-out GitHub Actions workflow runs. */ export declare const onGitHubWorkflowRunTimedOut: import("../../../automation/create-trigger").TriggerFactory<{ readonly account: { readonly connectionOptions: readonly [{ readonly requiredScopes: readonly ["actions:read"]; }]; readonly serviceId: "github"; }; readonly type: "github.workflow-run.timed-out"; }>; //# sourceMappingURL=workflow-runs.d.ts.map