You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: server/libs/modules/components/github/src/main/java/com/bytechef/component/github/action/GithubCreateForkAction.java
+32-1Lines changed: 32 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -67,8 +67,39 @@ public class GithubCreateForkAction {
67
67
outputSchema(
68
68
object()
69
69
.properties(
70
+
string("id")
71
+
.description("The unique identifier of the fork."),
72
+
string("node_id")
73
+
.description("The node ID of the fork."),
74
+
string("name")
75
+
.description("The name of the forked repository."),
76
+
string("full_name")
77
+
.description("The full name of the forked repository including owner."),
78
+
object("owner")
79
+
.properties(
80
+
string("login").description("Username of the repository owner."),
81
+
string("id").description("ID of the repository owner."),
82
+
string("node_id").description("Node ID of the owner."),
83
+
string("url").description("URL of the owner."))
84
+
.description("Owner information."),
85
+
bool("private")
86
+
.description("Indicates if the forked repository is private."),
87
+
string("html_url")
88
+
.description("HTML URL of the forked repository."),
70
89
string("url")
71
-
.description("URL of the created fork."))))
90
+
.description("API URL of the forked repository."),
91
+
string("description")
92
+
.description("Description of the repository."),
93
+
string("fork")
94
+
.description("Whether this repository is a fork."),
0 commit comments