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
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