package
Version:
v0.8.0
Opens a new window with list of versions in this module.
Published: Oct 19, 2020
License: Apache-2.0
Opens a new window with license information.
Imports: 3
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Config struct {
DefaultValues DefaultValues `yaml:"defaultValues"`
Mappings []Mappings `yaml:"mappings"`
}
Config contains all the data parsed from the conf.yaml file
New reads the configuration from the file/Reader and parses it into a Config object
type CustomField struct {
ID string `yaml:"id"`
FieldType string `yaml:"fieldType"`
Values []string `yaml:"values"`
}
type DefaultValues struct {
Project string `yaml:"project"`
IssueType string `yaml:"issueType"`
Components []string `yaml:"components"`
AffectsVersions []string `yaml:"affectsVersions"`
Labels []string `yaml:"labels,omitempty"`
CustomFields []CustomField `yaml:"customFields,omitempty"`
}
type Mappings struct {
DraconField string `yaml:"draconField"`
JiraField string `yaml:"jiraField"`
FieldType string `yaml:"fieldType"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.