Open
Description
Schema Inaccuracy
It's technically invalid from an OpenAPI perspective to have two different single path parameters at the same level. This is because they can't be differentiated and they might have operations that collide between one another.
Expected
- /repos/{org}/{repo}/actions/required_workflows should be /repos/{owner}/{repo}/actions/required_workflows
- /repos/{org}/{repo}/actions/required_workflows/{required_workflow_id_for_repo} should be /repos/{owner}/{repo}/actions/required_workflows/{required_workflow_id_for_repo}
- /repos/{org}/{repo}/actions/required_workflows/{required_workflow_id_for_repo}/timing should be /repos/{owner}/{repo}/actions/required_workflows/{required_workflow_id_for_repo}/timing
Reproduction Steps
N/A