Skip to content

Built for people who want to own their automations. Join the waitlist for an invite.

Package listing

@kody/netlify

src/scheduled-status.js

12 lines · 397 B · JavaScript
import { runSiteStatus } from './netlify.js'

/**
 * Read-only site list. With no params, uses the caller's token (same contract
 * as the disabled `site-status` job). Never mutates deploys.
 * @example
 * import status from 'kody:@kody/netlify/scheduled-status'
 * const result = await status()
 */
export default async function scheduledStatus(input = {}) {
	return await runSiteStatus(input)
}