| 10 | ) |
| 11 | |
| 12 | type GitLabConfig struct { |
| 13 | URL string `yaml:"url,omitempty"` |
| 14 | JobName string `yaml:"job_name"` |
| 15 | AccessToken string `yaml:"access_token"` |
| 16 | Starred *bool `yaml:"starred,omitempty"` |
| 17 | Member *bool `yaml:"member,omitempty"` |
| 18 | Owned *bool `yaml:"owned,omitempty"` |
| 19 | Exclude []string `yaml:"exclude,omitempty"` |
| 20 | Repositories []string `yaml:"repositories,omitempty"` |
| 21 | client *gitlab.Client |
| 22 | } |
| 23 | |
| 24 | func (g *GitLabConfig) GetName() string { |
| 25 | return g.JobName |
nothing calls this directly
no outgoing calls
no test coverage detected