Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AssetSpec ¶
type AssetSpec struct { CreatedAt time.Time `json:",omitempty"` ContentType string `json:",omitempty"` DownloadURL string `json:",omitempty"` Name string `json:",omitempty"` UpdatedAt string `json:",omitempty"` Size int `json:",omitempty"` }
ReleaseAssetspec contains information about release assets
type Config ¶
type Config struct { /* Name specifies the name of the changelog to retrieve. It is only used for identification purposes. */ Name string /* dir specifies the directory where changelog files will be repost. */ Dir string /* kind specifies the kind of changelog to retrieve. accepted values: * github */ Kind string /* format specifies the format of the changelog to generate. */ Formats []ConfigFormat /* spec specifies the configuration input for a specific kind of changelog. */ Spec interface{} }
Config contains various information used to configure the way changelogs are retrieved
func (*Config) Sanitize ¶
Sanitize ensures that the configuration is valid and that all required fields are set.
func (Config) SaveIndexToDisk ¶
SaveIndexToDisk saves an index file per format to disk
func (Config) SaveToDisk ¶
SaveToDisk saves one changelog per file per format to disk
type ConfigFormat ¶
type ConfigFormat struct { /* Extension is the file extension used for the changelog file. accepted values: * markdown * json default: * markdown */ Extension string /* indexFileName is the name of the index file name without the extension. default: * _index */ IndexFileName string /* indexFrontMatters is the front matters using yaml syntax to add to the index file. */ IndexFrontMatters string /* frontmatters is the front matters using yaml syntax to add to the changelog file. */ FrontMatters string }
func (*ConfigFormat) Sanitize ¶
func (c *ConfigFormat) Sanitize() error
type ReleaseData ¶
type Spec ¶
type Spec struct { Assets []AssetSpec `json:",omitempty"` Author string `json:",omitempty"` Title string `json:",omitempty"` Description string `json:",omitempty"` DescriptionHTML string `json:",omitempty"` URL string `json:",omitempty"` PublishedAt string `json:",omitempty"` UpdatedAt string `json:",omitempty"` Tag string `json:",omitempty"` Name string `json:",omitempty"` /* Path is the path to the file containing the changelog. */ Path string `json:",omitempty"` }
Spec contains various information used to describe target changes
Click to show internal directories.
Click to hide internal directories.