github.onWorkflowJobStarted emits workflow jobs with action: "in_progress".
automations/github-workflow-job-started.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 starts.
github.onWorkflowJobStarted emits workflow jobs with action: "in_progress".
import { automation } from "automate.ax"
import { github } from "automate.ax/github"
export default automation("GitHub workflow job started", () => {
const event = github.onWorkflowJobStarted()
// Update the GitHub workflow in the CI dashboard.
})