Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/actionify/src/types.ts>JobData

Create and manage your GitHub workflows with TypeScript and Deno.
Latest
interface JobData
import { type JobData } from "https://deno.land/x/actionify@0.3.0/src/types.ts";

The job context contains information about the currently running job.

This context changes for each job in a workflow run. You can access this context from any step in a job. This object contains all the properties listed below.

Properties

container: JobContextContainer

Information about the job's container.

services: JobContextServices<NonNullable<Base["services"]>>

The service containers created for a job.

status: JobContextStatus

The current status of the job. Possible values are success, failure, or cancelled.