I think the organization path is incorrect: ``` gh api --paginate "orgs/${owner}/projects" --jq "map(select(.name == \"${legacy_project_board_name}\"))" | ``` should be ``` gh api --paginate "/repos/${owner}/${repo}/projects" --jq "map(select(.name == \"${legacy_project_board_name}\"))" | ``` At least this is what worked for me. Thanks!
I think the organization path is incorrect:
should be
At least this is what worked for me. Thanks!