github.onWorkflowJobTimedOut emits completed jobs with conclusion: "timed_out".
automations/github-workflow-job-timed-out.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Run when a GitHub Actions workflow job times out.
github.onWorkflowJobTimedOut emits completed jobs with conclusion: "timed_out".
import { automation } from "automate.ax"
import { github } from "automate.ax/github"
export default automation("GitHub workflow job timed out", () => {
const event = github.onWorkflowJobTimedOut()
// Update the GitHub workflow in the CI dashboard.
})