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