package
Version:
v0.13.0
Opens a new window with list of versions in this module.
Published: Jul 27, 2026
License: Apache-2.0
Opens a new window with license information.
Imports: 5
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Actor struct {
Nickname string `json:"nickname"`
DisplayName string `json:"display_name"`
UUID string `json:"uuid"`
}
type Change struct {
Commits []Commit `json:"commits"`
New *Ref `json:"new,omitempty"`
Old *Ref `json:"old,omitempty"`
}
type Commit struct {
Hash string `json:"hash"`
Message string `json:"message"`
Author Actor `json:"author"`
Date string `json:"date"`
}
type Link struct {
Href string `json:"href"`
}
type PushData struct {
Changes []Change `json:"changes"`
}
type PushEvent struct {
Push PushData `json:"push"`
Repository Repository `json:"repository"`
Actor Actor `json:"actor"`
}
type Ref struct {
Type string `json:"type"`
Name string `json:"name"`
Target Commit `json:"target"`
}
type RepoLinks struct {
Self Link `json:"self"`
}
type Repository struct {
FullName string `json:"full_name"`
Name string `json:"name"`
UUID string `json:"uuid"`
Scm string `json:"scm"`
Links RepoLinks `json:"links"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.