mirror of
https://gitea.com/gitea/tea.git
synced 2026-06-05 18:58:43 +02:00
8e0666ab85
Reviewed-on: https://gitea.com/gitea/tea/pulls/1003 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: techknowlogick <techknowlogick@gitea.com> Co-committed-by: techknowlogick <techknowlogick@gitea.com>
48 lines
1.1 KiB
Go
48 lines
1.1 KiB
Go
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package cmd
|
|
|
|
import (
|
|
stdctx "context"
|
|
|
|
"gitea.dev/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 workflow runs",
|
|
Action: runActionsDefault,
|
|
Commands: []*cli.Command{
|
|
&actions.CmdActionsSecrets,
|
|
&actions.CmdActionsVariables,
|
|
&actions.CmdActionsRuns,
|
|
&actions.CmdActionsWorkflows,
|
|
},
|
|
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(_ stdctx.Context, cmd *cli.Command) error {
|
|
return cli.ShowSubcommandHelp(cmd)
|
|
}
|