Generate a bash script to iterate through all repos in a GitHub org and list all distinct webhook URLs along with a list of repos that are using it.
For reference, here is the command for listing repos under a GitHub org with example response with the field that matters:
gh api \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/orgs/ORG/repos
[
{
"name": "Hello-World",
}
]
and here is the command for listing webhooks of a repo with example response with the field that matters:
gh api \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/repos/OWNER/REPO/hooks
[
{
"config": {
"url": "https://example.com/webhook"
},
}
]