1
0
mirror of https://gitea.com/gitea/tea.git synced 2025-08-14 08:38:33 +02:00
Files
.devcontainer
.gitea
cmd
contrib
docs
modules
auth
config
context
git
interact
comments.go
issue_create.go
issue_edit.go
login.go
milestone_create.go
prompts.go
pull_create.go
pull_merge.go
pull_review.go
print
task
utils
workaround
snap
.changelog.yml
.dockerignore
.envrc
.gitignore
.goreleaser.checksum.sh
.goreleaser.yaml
.revive.toml
CHANGELOG.md
CONTRIBUTING.md
DCO
Dockerfile
FEATURE-COMPARISON.md
LICENSE
Makefile
README.md
build.go
demo.gif
flake.lock
flake.nix
go.mod
go.sum
main.go
renovate.json5
gitea-tea/modules/interact/milestone_create.go
techknowlogick b868d30434 spdx ()
Co-authored-by: techknowlogick <hello@techknowlogick.com>
Co-committed-by: techknowlogick <hello@techknowlogick.com>
2023-09-08 01:40:02 +00:00

58 lines
1.2 KiB
Go

// Copyright 2020 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package interact
import (
"time"
"code.gitea.io/tea/modules/config"
"code.gitea.io/tea/modules/task"
"code.gitea.io/sdk/gitea"
"github.com/AlecAivazis/survey/v2"
)
// CreateMilestone interactively creates a milestone
func CreateMilestone(login *config.Login, owner, repo string) error {
var title, description string
var deadline *time.Time
// owner, repo
owner, repo, err := promptRepoSlug(owner, repo)
if err != nil {
return err
}
// title
promptOpts := survey.WithValidator(survey.Required)
promptI := &survey.Input{Message: "Milestone title:"}
if err := survey.AskOne(promptI, &title, promptOpts); err != nil {
return err
}
// description
promptM := NewMultiline(Multiline{
Message: "Milestone description:",
Syntax: "md",
UseEditor: config.GetPreferences().Editor,
})
if err := survey.AskOne(promptM, &description); err != nil {
return err
}
// deadline
if deadline, err = promptDatetime("Milestone deadline:"); err != nil {
return err
}
return task.CreateMilestone(
login,
owner,
repo,
title,
description,
deadline,
gitea.StateOpen)
}