mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-03 04:27:21 -05:00
b868d30434
Co-authored-by: techknowlogick <hello@techknowlogick.com> Co-committed-by: techknowlogick <hello@techknowlogick.com>
37 lines
820 B
Go
37 lines
820 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package task
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"code.gitea.io/tea/modules/config"
|
|
"code.gitea.io/tea/modules/print"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
)
|
|
|
|
// CreateMilestone creates a milestone in the given repo and prints the result
|
|
func CreateMilestone(login *config.Login, repoOwner, repoName, title, description string, deadline *time.Time, state gitea.StateType) error {
|
|
|
|
// title is required
|
|
if len(title) == 0 {
|
|
return fmt.Errorf("Title is required")
|
|
}
|
|
|
|
mile, _, err := login.Client().CreateMilestone(repoOwner, repoName, gitea.CreateMilestoneOption{
|
|
Title: title,
|
|
Description: description,
|
|
Deadline: deadline,
|
|
State: state,
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
print.MilestoneDetails(mile)
|
|
return nil
|
|
}
|