Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/actionify/src/deps/octokit-types.ts>Team

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

Groups of organization members that gives permissions on specified repositories.

Properties

name: string

Name of the team

id: number

Unique identifier of the team

node_id: string
slug: string
description: string | null

Description of the team

privacy: "open" | "closed" | "secret"
url: string

URL for the team

html_url: string
members_url: string
repositories_url: string
permission: string

Permission that the team will have for its repositories

optional
parent: { name: string; id: number; node_id: string; slug: string; description: string | null; privacy: "open" | "closed" | "secret"; url: string; html_url: string; members_url: string; repositories_url: string; permission: string; } | null