Control: Website URL should be set in each public repository
Description
Website URL should be set to provide the community awareness of where they can go for more information about the project.
Usage
Run the control in your terminal:
powerpipe control run github_sherlock.control.public_repo_website_set
Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run github_sherlock.control.public_repo_website_set --share
Steampipe Tables
SQL
select url as resource, case when homepage_url <> '' then 'ok' else 'alarm' end as status, name_with_owner || ' homepage is ' || case when (homepage_url <> '') then homepage_url else 'not set' end || '.' as reason, name_with_ownerfrom github_my_repositorywhere visibility = 'PUBLIC' and is_fork = false