-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinterface_core_git-push_v1.go
More file actions
28 lines (22 loc) · 1.27 KB
/
interface_core_git-push_v1.go
File metadata and controls
28 lines (22 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Code generated by actrun. DO NOT EDIT.
package node_interfaces
import "github.com/actionforge/actrun-cli/core" // Updates remote refs along with associated objects.
// ==> (o) Inputs
// Optional credentials for accessing private repositories. If not provided, the node will use the default Git configuration.
const Core_git_push_v1_Input_auth core.InputId = "auth"
// The branch to push. If empty, the current branch is used.
const Core_git_push_v1_Input_branch core.InputId = "branch"
const Core_git_push_v1_Input_exec core.InputId = "exec"
// Whether to force the push (use with caution). Defaults to false.
const Core_git_push_v1_Input_force core.InputId = "force"
// The name of the remote repository to push to. Defaults to 'origin'.
const Core_git_push_v1_Input_remote core.InputId = "remote"
// The Git repository object from a clone or open node.
const Core_git_push_v1_Input_repo core.InputId = "repo"
// Whether to push local tags to the remote. Defaults to false.
const Core_git_push_v1_Input_tags core.InputId = "tags"
// Outputs (o) ==>
// Executes if there is an error during the push.
const Core_git_push_v1_Output_exec_err core.OutputId = "exec-err"
// Executes if the push operation is successful.
const Core_git_push_v1_Output_exec_success core.OutputId = "exec-success"