mirror of
https://gitea.com/gitea/tea.git
synced 2026-04-25 17:07:49 +02:00
## Summary - Add `tea actions workflows dispatch` to trigger `workflow_dispatch` events with `--ref`, `--input key=value`, and `--follow` for log tailing - Add `tea actions workflows view` to show workflow details - Add `tea actions workflows enable` and `disable` to toggle workflow state - Rewrite `workflows list` to use the Workflow API instead of file listing - Remove dead `WorkflowsList` print function that used `ContentsResponse` - Update `CLI.md` and `example-workflows.md` with usage documentation and examples ## Motivation Enable re-triggering specific workflows from the CLI, which is essential for AI-driven PR flows where a specific workflow needs to be re-run after pushing changes. Leverages the 5 workflow API endpoints already supported by the Go SDK (v0.24.1) from go-gitea/gitea#33545: - `ListRepoActionWorkflows` - `GetRepoActionWorkflow` - `DispatchRepoActionWorkflow` (with `returnRunDetails` support) - `EnableRepoActionWorkflow` - `DisableRepoActionWorkflow` ## New commands \`\`\` tea actions workflows ├── list (rewritten to use Workflow API) ├── view <id> (new) ├── dispatch <id> (new) ├── enable <id> (new) └── disable <id> (new) \`\`\` ### Usage examples \`\`\`bash # Dispatch workflow on current branch tea actions workflows dispatch deploy.yml # Dispatch with specific ref and inputs tea actions workflows dispatch deploy.yml --ref main --input env=staging --input version=1.2.3 # Dispatch and follow logs tea actions workflows dispatch ci.yml --ref feature/my-pr --follow # View workflow details tea actions workflows view deploy.yml # Enable/disable workflows tea actions workflows enable deploy.yml tea actions workflows disable deploy.yml --confirm \`\`\` ## Test plan - [x] `go build ./...` passes - [x] `go test ./...` passes - [x] `go vet ./...` passes - [x] `make lint` — 0 issues - [x] `make docs-check` — CLI.md is up to date - [x] Manual test: `tea actions workflows list` shows workflows from API - [x] Manual test: `tea actions workflows dispatch <workflow> --ref main` triggers a run - [x] Manual test: `tea actions workflows view <workflow>` shows details --------- Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Reviewed-on: https://gitea.com/gitea/tea/pulls/952 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Bo-Yi Wu <appleboy.tw@gmail.com> Co-committed-by: Bo-Yi Wu <appleboy.tw@gmail.com>
215 lines
4.8 KiB
Go
215 lines
4.8 KiB
Go
// Copyright 2026 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package print
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
)
|
|
|
|
// formatDurationMinutes formats duration in a human-readable way
|
|
func formatDurationMinutes(started, completed time.Time) string {
|
|
if started.IsZero() {
|
|
return ""
|
|
}
|
|
|
|
end := completed
|
|
if end.IsZero() {
|
|
end = time.Now()
|
|
}
|
|
|
|
duration := end.Sub(started)
|
|
if duration < time.Minute {
|
|
return fmt.Sprintf("%ds", int(duration.Seconds()))
|
|
}
|
|
if duration < time.Hour {
|
|
return fmt.Sprintf("%dm", int(duration.Minutes()))
|
|
}
|
|
hours := int(duration.Hours())
|
|
minutes := int(duration.Minutes()) % 60
|
|
return fmt.Sprintf("%dh%dm", hours, minutes)
|
|
}
|
|
|
|
// getWorkflowDisplayName returns the display title or falls back to path
|
|
func getWorkflowDisplayName(run *gitea.ActionWorkflowRun) string {
|
|
if run.DisplayTitle != "" {
|
|
return run.DisplayTitle
|
|
}
|
|
return run.Path
|
|
}
|
|
|
|
// ActionRunsList prints a list of workflow runs
|
|
func ActionRunsList(runs []*gitea.ActionWorkflowRun, output string) error {
|
|
t := table{
|
|
headers: []string{
|
|
"ID",
|
|
"Status",
|
|
"Workflow",
|
|
"Branch",
|
|
"Event",
|
|
"Started",
|
|
"Duration",
|
|
},
|
|
}
|
|
|
|
machineReadable := isMachineReadable(output)
|
|
|
|
for _, run := range runs {
|
|
workflowName := getWorkflowDisplayName(run)
|
|
duration := formatDurationMinutes(run.StartedAt, run.CompletedAt)
|
|
|
|
t.addRow(
|
|
fmt.Sprintf("%d", run.ID),
|
|
run.Status,
|
|
workflowName,
|
|
run.HeadBranch,
|
|
run.Event,
|
|
FormatTime(run.StartedAt, machineReadable),
|
|
duration,
|
|
)
|
|
}
|
|
|
|
if len(runs) == 0 {
|
|
fmt.Printf("No workflow runs found\n")
|
|
return nil
|
|
}
|
|
|
|
t.sort(0, true)
|
|
return t.print(output)
|
|
}
|
|
|
|
// ActionRunDetails prints detailed information about a workflow run
|
|
func ActionRunDetails(run *gitea.ActionWorkflowRun) {
|
|
workflowName := getWorkflowDisplayName(run)
|
|
|
|
fmt.Printf("Run ID: %d\n", run.ID)
|
|
fmt.Printf("Run Number: %d\n", run.RunNumber)
|
|
fmt.Printf("Status: %s\n", run.Status)
|
|
if run.Conclusion != "" {
|
|
fmt.Printf("Conclusion: %s\n", run.Conclusion)
|
|
}
|
|
fmt.Printf("Workflow: %s\n", workflowName)
|
|
fmt.Printf("Path: %s\n", run.Path)
|
|
fmt.Printf("Branch: %s\n", run.HeadBranch)
|
|
fmt.Printf("Event: %s\n", run.Event)
|
|
fmt.Printf("Head SHA: %s\n", run.HeadSha)
|
|
fmt.Printf("Started: %s\n", FormatTime(run.StartedAt, false))
|
|
if !run.CompletedAt.IsZero() {
|
|
fmt.Printf("Completed: %s\n", FormatTime(run.CompletedAt, false))
|
|
duration := formatDurationMinutes(run.StartedAt, run.CompletedAt)
|
|
fmt.Printf("Duration: %s\n", duration)
|
|
}
|
|
if run.RunAttempt > 1 {
|
|
fmt.Printf("Attempt: %d\n", run.RunAttempt)
|
|
}
|
|
if run.Actor != nil {
|
|
fmt.Printf("Triggered by: %s\n", run.Actor.UserName)
|
|
}
|
|
if run.HTMLURL != "" {
|
|
fmt.Printf("URL: %s\n", run.HTMLURL)
|
|
}
|
|
}
|
|
|
|
// ActionWorkflowJobsList prints a list of workflow jobs
|
|
func ActionWorkflowJobsList(jobs []*gitea.ActionWorkflowJob, output string) error {
|
|
t := table{
|
|
headers: []string{
|
|
"ID",
|
|
"Name",
|
|
"Status",
|
|
"Runner",
|
|
"Started",
|
|
"Duration",
|
|
},
|
|
}
|
|
|
|
machineReadable := isMachineReadable(output)
|
|
|
|
for _, job := range jobs {
|
|
duration := formatDurationMinutes(job.StartedAt, job.CompletedAt)
|
|
runner := job.RunnerName
|
|
if runner == "" {
|
|
runner = "-"
|
|
}
|
|
|
|
t.addRow(
|
|
fmt.Sprintf("%d", job.ID),
|
|
job.Name,
|
|
job.Status,
|
|
runner,
|
|
FormatTime(job.StartedAt, machineReadable),
|
|
duration,
|
|
)
|
|
}
|
|
|
|
if len(jobs) == 0 {
|
|
fmt.Printf("No jobs found\n")
|
|
return nil
|
|
}
|
|
|
|
t.sort(0, true)
|
|
return t.print(output)
|
|
}
|
|
|
|
// ActionWorkflowsList prints a list of workflows from the workflow API
|
|
func ActionWorkflowsList(workflows []*gitea.ActionWorkflow, output string) error {
|
|
t := table{
|
|
headers: []string{
|
|
"ID",
|
|
"Name",
|
|
"Path",
|
|
"State",
|
|
},
|
|
}
|
|
|
|
for _, wf := range workflows {
|
|
t.addRow(
|
|
wf.ID,
|
|
wf.Name,
|
|
wf.Path,
|
|
wf.State,
|
|
)
|
|
}
|
|
|
|
if len(workflows) == 0 {
|
|
fmt.Printf("No workflows found\n")
|
|
return nil
|
|
}
|
|
|
|
t.sort(1, true) // Sort by name column
|
|
return t.print(output)
|
|
}
|
|
|
|
// ActionWorkflowDetails prints detailed information about a workflow
|
|
func ActionWorkflowDetails(wf *gitea.ActionWorkflow) {
|
|
fmt.Printf("ID: %s\n", wf.ID)
|
|
fmt.Printf("Name: %s\n", wf.Name)
|
|
fmt.Printf("Path: %s\n", wf.Path)
|
|
fmt.Printf("State: %s\n", wf.State)
|
|
if wf.HTMLURL != "" {
|
|
fmt.Printf("URL: %s\n", wf.HTMLURL)
|
|
}
|
|
if wf.BadgeURL != "" {
|
|
fmt.Printf("Badge: %s\n", wf.BadgeURL)
|
|
}
|
|
if !wf.CreatedAt.IsZero() {
|
|
fmt.Printf("Created: %s\n", FormatTime(wf.CreatedAt, false))
|
|
}
|
|
if !wf.UpdatedAt.IsZero() {
|
|
fmt.Printf("Updated: %s\n", FormatTime(wf.UpdatedAt, false))
|
|
}
|
|
}
|
|
|
|
// ActionWorkflowDispatchResult prints the result of a workflow dispatch
|
|
func ActionWorkflowDispatchResult(details *gitea.RunDetails) {
|
|
fmt.Printf("Workflow dispatched successfully\n")
|
|
if details != nil {
|
|
fmt.Printf("Run ID: %d\n", details.WorkflowRunID)
|
|
if details.HTMLURL != "" {
|
|
fmt.Printf("URL: %s\n", details.HTMLURL)
|
|
}
|
|
}
|
|
}
|