teams-incoming-webhook-action
    Preparing search index...

    Interface DeployCardParams

    interface DeployCardParams {
        author:
            | {
                avatar_url: string;
                email?: string
                | null;
                events_url: string;
                followers_url: string;
                following_url: string;
                gists_url: string;
                gravatar_id: string | null;
                html_url: string;
                id: number;
                login: string;
                name?: string | null;
                node_id: string;
                organizations_url: string;
                received_events_url: string;
                repos_url: string;
                site_admin: boolean;
                starred_at?: string;
                starred_url: string;
                subscriptions_url: string;
                type: string;
                url: string;
                user_view_type?: string;
            }
            | Record<string, never>
            | null;
        branch: string | undefined;
        color: string;
        commit: OctokitResponse;
        message?: string;
        repoName: string;
        repoUrl: string;
        runId: string;
        runNum: string;
        sha: string;
        showCommitMessage?: boolean;
        timestamp: string;
        title: string;
        titleSize?: "Default" | "Large";
        userMentions?: UserMention[];
    }
    Index

    Properties

    author:
        | {
            avatar_url: string;
            email?: string
            | null;
            events_url: string;
            followers_url: string;
            following_url: string;
            gists_url: string;
            gravatar_id: string | null;
            html_url: string;
            id: number;
            login: string;
            name?: string | null;
            node_id: string;
            organizations_url: string;
            received_events_url: string;
            repos_url: string;
            site_admin: boolean;
            starred_at?: string;
            starred_url: string;
            subscriptions_url: string;
            type: string;
            url: string;
            user_view_type?: string;
        }
        | Record<string, never>
        | null

    Type Declaration

    • {
          avatar_url: string;
          email?: string | null;
          events_url: string;
          followers_url: string;
          following_url: string;
          gists_url: string;
          gravatar_id: string | null;
          html_url: string;
          id: number;
          login: string;
          name?: string | null;
          node_id: string;
          organizations_url: string;
          received_events_url: string;
          repos_url: string;
          site_admin: boolean;
          starred_at?: string;
          starred_url: string;
          subscriptions_url: string;
          type: string;
          url: string;
          user_view_type?: string;
      }
      • avatar_url: string

        Format: uri

        https://github.com/images/error/octocat_happy.gif
        
      • Optionalemail?: string | null
      • events_url: string
        https://api.github.com/users/octocat/events{/privacy}
        
      • followers_url: string

        Format: uri

        https://api.github.com/users/octocat/followers
        
      • following_url: string
        https://api.github.com/users/octocat/following{/other_user}
        
      • gists_url: string
        https://api.github.com/users/octocat/gists{/gist_id}
        
      • gravatar_id: string | null
        41d064eb2195891e12d0413f63227ea7
        
      • html_url: string

        Format: uri

        https://github.com/octocat
        
      • id: number

        Format: int64

        1
        
      • login: string
        octocat
        
      • Optionalname?: string | null
      • node_id: string
        MDQ6VXNlcjE=
        
      • organizations_url: string

        Format: uri

        https://api.github.com/users/octocat/orgs
        
      • received_events_url: string

        Format: uri

        https://api.github.com/users/octocat/received_events
        
      • repos_url: string

        Format: uri

        https://api.github.com/users/octocat/repos
        
      • site_admin: boolean
      • Optionalstarred_at?: string
        "2020-07-09T00:17:55Z"
        
      • starred_url: string
        https://api.github.com/users/octocat/starred{/owner}{/repo}
        
      • subscriptions_url: string

        Format: uri

        https://api.github.com/users/octocat/subscriptions
        
      • type: string
        User
        
      • url: string

        Format: uri

        https://api.github.com/users/octocat
        
      • Optionaluser_view_type?: string
        public
        
    • Record<string, never>
    • null
    branch: string | undefined
    color: string
    commit: OctokitResponse
    message?: string
    repoName: string
    repoUrl: string
    runId: string
    runNum: string
    sha: string
    showCommitMessage?: boolean
    timestamp: string
    title: string
    titleSize?: "Default" | "Large"
    userMentions?: UserMention[]