Skip to content

Commit

Permalink
Merge pull request #1834 from ppeble/pipelines-add-name-field
Browse files Browse the repository at this point in the history
Add missing name field to Pipelines struct
  • Loading branch information
svanharmelen committed Nov 13, 2023
2 parents 0540320 + 22786e4 commit d906aaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion notifications_test.go
Expand Up @@ -86,7 +86,7 @@ func TestGetProjectSettings(t *testing.T) {
}

want := &NotificationSettings{
Level: 5, //custom
Level: 5, // custom
Events: &NotificationEvents{
NewEpic: true,
NewNote: true,
Expand Down
1 change: 1 addition & 0 deletions pipelines.go
Expand Up @@ -49,6 +49,7 @@ type Pipeline struct {
Status string `json:"status"`
Source string `json:"source"`
Ref string `json:"ref"`
Name string `json:"name"`
SHA string `json:"sha"`
BeforeSHA string `json:"before_sha"`
Tag bool `json:"tag"`
Expand Down

0 comments on commit d906aaa

Please sign in to comment.