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