Skip to content

Commit 30eaa64

Browse files
committed
3195 - updating output schema and json file
1 parent 85b5941 commit 30eaa64

File tree

2 files changed

+2059
-532
lines changed

2 files changed

+2059
-532
lines changed

server/libs/modules/components/github/src/main/java/com/bytechef/component/github/action/GithubCreateForkAction.java

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,39 @@ public class GithubCreateForkAction {
6767
outputSchema(
6868
object()
6969
.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."),
7089
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."),
95+
string("created_at")
96+
.description("Creation timestamp."),
97+
string("updated_at")
98+
.description("Last update timestamp."),
99+
string("pushed_at")
100+
.description("Last push timestamp."),
101+
string("default_branch")
102+
.description("Default branch name."))))
72103
.perform(GithubCreateForkAction::perform);
73104

74105
public static Map<String, Object> perform(

0 commit comments

Comments
 (0)