github.enableWorkflow enables a disabled workflow.
automations/enable-github-workflow.automation.ts
{} after GitHub accepts the change. Requires Actions write permission.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Enable a disabled GitHub Actions workflow.
github.enableWorkflow enables a disabled workflow.
import { automation } from "automate.ax"
import { github } from "automate.ax/github"
export default automation("Enable deploy workflow", () => {
github.enableWorkflow({
owner: "SentsCo",
repository: "automate.ax",
workflowId: "deploy.yml",
})
})
{} after GitHub accepts the change. Requires Actions write permission.