interface GitPushEventData {
    afterId?: string;
    beforeId?: string;
    branch?: string;
    commits?: GitCommit[];
    repository?: GitRepository;
}

Properties

afterId?: string
beforeId?: string
branch?: string
commits?: GitCommit[]
repository?: GitRepository