github.onCheckSuiteTimedOut starts an automation for a completed check suite with conclusion "timed_out".
automations/github-check-suite-timed-out.automation.ts
check_suite.conclusion: "timed_out". Requires Checks read permission.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Start an automation when a GitHub check suite times out.
github.onCheckSuiteTimedOut starts an automation for a completed check suite with conclusion "timed_out".
import { automation, t } from "automate.ax"
import { github } from "automate.ax/github"
export default automation("GitHub check suite timed out", () => {
const event = github.onCheckSuiteTimedOut()
github.createIssue({
owner: event.repository.owner.login,
repository: event.repository.name,
title: t`Check suite timed out at ${event.check_suite.head_sha}`,
})
})
check_suite.conclusion: "timed_out". Requires Checks read permission.