github.onWorkflowJobFailed emits completed jobs with conclusion: "failure".
automations/github-workflow-job-failed.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 fails.
github.onWorkflowJobFailed emits completed jobs with conclusion: "failure".
import { automation } from "automate.ax"
import { github } from "automate.ax/github"
export default automation("GitHub workflow job failed", () => {
const event = github.onWorkflowJobFailed()
// Update the GitHub workflow in the CI dashboard.
})