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