github.getDeploymentStatus gets one deployment status by ID.
automations/get-github-deployment-status.automation.ts
deploymentId, and statusId. Returns the status id and state. Requires Deployments read permission.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get one status from a GitHub deployment.
github.getDeploymentStatus gets one deployment status by ID.
import { automation } from "automate.ax"
import { github } from "automate.ax/github"
export default automation("Get GitHub deployment status", () => {
const status = github.getDeploymentStatus({
deploymentId: 123456,
owner: "SentsCo",
repository: "automate.ax",
statusId: 789,
})
})
deploymentId, and statusId. Returns the status id and state. Requires Deployments read permission.