mirror of
https://gitea.com/gitea/tea.git
synced 2026-02-22 14:23:30 +01:00
Implements comprehensive workflow execution tracking for Gitea Actions using tea CLI ## Features ### tea actions runs list - List workflow runs with filtering (status, branch, event, actor, time) - Time filters: relative (24h, 7d) and absolute dates - Status symbols: ✓ success, ✘ failure, ⭮ pending, ⊘ skipped/cancelled, ⚠ blocked - Multiple output formats: table, json, yaml, csv, tsv ### tea actions runs view - View run details with metadata (ID, status, workflow, branch, event, trigger info) - Shows jobs table with status, runner, duration - Optional --jobs flag to toggle jobs display ### tea actions runs delete - Delete/cancel workflow runs with confirmation prompt - Supports --confirm/-y to skip prompt ### tea actions runs logs - View job logs for all jobs or specific job (--job <id>) - **New: --follow/-f flag for real-time log following** (like tail -f) - Polls API every 2 seconds, only shows new content - Auto-detects completion and exits ### tea actions workflows list - List workflow files (.yml and .yaml) in repository - Searches in .gitea/workflows and .github/workflows - Shows active (✓) or inactive (✗) status based on recent runs - Displays workflow name, path, and file size ## Commands `tea actions runs list --status success --since 24h` `tea actions runs view 123` `tea actions runs delete 123 --confirm` `tea actions runs logs 123 --job 456 --follow` `tea actions workflows list` ## Tests - 19 unit tests across all commands - Full test suite passing - Manual testing successful --------- Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: techknowlogick <techknowlogick@gitea.com> Reviewed-on: https://gitea.com/gitea/tea/pulls/880 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: yousfi saad <yousfi.saad@gmail.com> Co-committed-by: yousfi saad <yousfi.saad@gmail.com>
87 lines
2.3 KiB
Go
87 lines
2.3 KiB
Go
// Copyright 2026 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package workflows
|
|
|
|
import (
|
|
stdctx "context"
|
|
"fmt"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"code.gitea.io/tea/cmd/flags"
|
|
"code.gitea.io/tea/modules/context"
|
|
"code.gitea.io/tea/modules/print"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
"github.com/urfave/cli/v3"
|
|
)
|
|
|
|
// CmdWorkflowsList represents a sub command to list workflows
|
|
var CmdWorkflowsList = cli.Command{
|
|
Name: "list",
|
|
Aliases: []string{"ls"},
|
|
Usage: "List repository workflows",
|
|
Description: "List workflow files in the repository with active/inactive status",
|
|
Action: RunWorkflowsList,
|
|
Flags: append([]cli.Flag{
|
|
&flags.PaginationPageFlag,
|
|
&flags.PaginationLimitFlag,
|
|
}, flags.AllDefaultFlags...),
|
|
}
|
|
|
|
// RunWorkflowsList lists workflow files in the repository
|
|
func RunWorkflowsList(ctx stdctx.Context, cmd *cli.Command) error {
|
|
c := context.InitCommand(cmd)
|
|
client := c.Login.Client()
|
|
|
|
// Try to list workflow files from .gitea/workflows directory
|
|
var workflows []*gitea.ContentsResponse
|
|
|
|
// Try .gitea/workflows first, then .github/workflows
|
|
workflowDir := ".gitea/workflows"
|
|
contents, _, err := client.ListContents(c.Owner, c.Repo, "", workflowDir)
|
|
if err != nil {
|
|
workflowDir = ".github/workflows"
|
|
contents, _, err = client.ListContents(c.Owner, c.Repo, "", workflowDir)
|
|
if err != nil {
|
|
fmt.Printf("No workflow files found\n")
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// Filter for workflow files (.yml and .yaml)
|
|
for _, content := range contents {
|
|
if content.Type == "file" {
|
|
ext := strings.ToLower(filepath.Ext(content.Name))
|
|
if ext == ".yml" || ext == ".yaml" {
|
|
content.Path = workflowDir + "/" + content.Name
|
|
workflows = append(workflows, content)
|
|
}
|
|
}
|
|
}
|
|
|
|
if len(workflows) == 0 {
|
|
fmt.Printf("No workflow files found\n")
|
|
return nil
|
|
}
|
|
|
|
// Check which workflows have runs to determine active status
|
|
workflowStatus := make(map[string]bool)
|
|
|
|
// Get recent runs to check activity
|
|
runs, _, err := client.ListRepoActionRuns(c.Owner, c.Repo, gitea.ListRepoActionRunsOptions{
|
|
ListOptions: flags.GetListOptions(),
|
|
})
|
|
if err == nil && runs != nil {
|
|
for _, run := range runs.WorkflowRuns {
|
|
// Extract workflow file name from path
|
|
workflowFile := filepath.Base(run.Path)
|
|
workflowStatus[workflowFile] = true
|
|
}
|
|
}
|
|
|
|
print.WorkflowsList(workflows, workflowStatus, c.Output)
|
|
return nil
|
|
}
|