github.getRelease gets one repository release.
automations/get-github-release.automation.ts
releaseId. Returns the release’s id, tag_name, draft, and prerelease state. Requires Contents 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 GitHub release by ID.
github.getRelease gets one repository release.
import { automation } from "automate.ax"
import { github } from "automate.ax/github"
export default automation("Get GitHub release", () => {
const release = github.getRelease({
owner: "SentsCo",
releaseId: 123456,
repository: "automate.ax",
})
})
releaseId. Returns the release’s id, tag_name, draft, and prerelease state. Requires Contents read permission.