github.onStatusErrored emits commit statuses with state: "error".
automations/github-status-errored.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 commit status reports an error.
github.onStatusErrored emits commit statuses with state: "error".
import { automation } from "automate.ax"
import { github } from "automate.ax/github"
export default automation("GitHub status errored", () => {
const event = github.onStatusErrored()
// Update the GitHub commit status in the CI dashboard.
})