action gitea_repo_get_contents_list { label: "Gets the metadata of all the entries of the root dir" provider: gitea method: GET path: "/repos/{owner}/{repo}/contents" encoding: json input: { type: "object" properties: { owner: { type: "string" } ref: { type: "string" } repo: { type: "string" } } required: ["owner", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }