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