action gitea_repo_get_editor_config { label: "Get the EditorConfig definitions of a file in a repository" provider: gitea method: GET path: "/repos/{owner}/{repo}/editorconfig/{filepath}" encoding: json input: { type: "object" properties: { filepath: { type: "string" } owner: { type: "string" } ref: { type: "string" } repo: { type: "string" } } required: ["filepath", "owner", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }