Implement tea actions commands to view workflow runs and logs using the Gitea 1.25 API endpoints directly. This adds: - `tea actions runs` - list workflow runs for a repository - `tea actions jobs <run-id>` - list jobs for a specific run - `tea actions logs <job-id>` - display logs for a specific job Also adds a new `modules/api` package for making raw authenticated HTTP requests to Gitea API endpoints not yet supported by the go-sdk. Closes #1 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
50 lines
1.2 KiB
Go
50 lines
1.2 KiB
Go
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package cmd
|
|
|
|
import (
|
|
stdctx "context"
|
|
|
|
"code.gitea.io/tea/cmd/actions"
|
|
|
|
"github.com/urfave/cli/v3"
|
|
)
|
|
|
|
// CmdActions represents the actions command for managing Gitea Actions
|
|
var CmdActions = cli.Command{
|
|
Name: "actions",
|
|
Aliases: []string{"action"},
|
|
Category: catEntities,
|
|
Usage: "Manage repository actions",
|
|
Description: "Manage repository actions including secrets, variables, and workflows",
|
|
Action: runActionsDefault,
|
|
Commands: []*cli.Command{
|
|
&actions.CmdActionsSecrets,
|
|
&actions.CmdActionsVariables,
|
|
&actions.CmdActionsRuns,
|
|
&actions.CmdActionsJobs,
|
|
&actions.CmdActionsLogs,
|
|
},
|
|
Flags: []cli.Flag{
|
|
&cli.StringFlag{
|
|
Name: "repo",
|
|
Usage: "repository to operate on",
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "login",
|
|
Usage: "gitea login instance to use",
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "output",
|
|
Aliases: []string{"o"},
|
|
Usage: "output format [table, csv, simple, tsv, yaml, json]",
|
|
},
|
|
},
|
|
}
|
|
|
|
func runActionsDefault(ctx stdctx.Context, cmd *cli.Command) error {
|
|
// Default to showing help
|
|
return cli.ShowCommandHelp(ctx, cmd, "actions")
|
|
}
|