github.onCheckSuiteEvent starts an automation for any delivered check_suite action.
automations/watch-github-check-suites.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Start an automation from GitHub check suite activity.
github.onCheckSuiteEvent starts an automation for any delivered check_suite action.
import { automation } from "automate.ax"
import { github } from "automate.ax/github"
export default automation("Watch GitHub check suites", () => {
const event = github.onCheckSuiteEvent()
github.getCombinedCommitStatus({
owner: event.repository.owner.login,
repository: event.repository.name,
ref: event.check_suite.head_sha,
})
})