dev/testsreporter/githubissue.go (49 lines of code) (raw):

// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. package testsreporter type githubIssue struct { repository string number int title string description string labels []string state string url string } func (i *githubIssue) Number() int { return i.number } func (i *githubIssue) Open() bool { return i.state == "OPEN" } func (i *githubIssue) URL() string { return i.url } func (i *githubIssue) Labels() []string { return i.labels } type githubIssueOptions struct { Repository string Title string Description string Labels []string Number int State string URL string } func newGithubIssue(options githubIssueOptions) *githubIssue { issue := githubIssue{ title: options.Title, description: options.Description, repository: options.Repository, labels: options.Labels, number: options.Number, state: options.State, url: options.URL, } return &issue } func (i *githubIssue) SetDescription(description string) { i.description = description } func (i *githubIssue) AddLabels(labels []string) { i.labels = append(i.labels, labels...) }