github.onWorkflowJobSucceeded emits completed jobs with conclusion: "success".
automations/github-workflow-job-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 Actions workflow job succeeds.
github.onWorkflowJobSucceeded emits completed jobs with conclusion: "success".
import { automation } from "automate.ax"
import { github } from "automate.ax/github"
export default automation("GitHub workflow job succeeded", () => {
const event = github.onWorkflowJobSucceeded()
// Update the GitHub workflow in the CI dashboard.
})