turbot/github_sherlock

Control: Organization description should be set

Description

Setting a description helps users learn more about your organization.

Usage

Run the control in your terminal:

powerpipe control run github_sherlock.control.org_description_set

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run github_sherlock.control.org_description_set --share

Steampipe Tables

SQL

select
url as resource,
case
when description <> '' then 'ok'
else 'alarm'
end as status,
coalesce(name, login) || ' description is ' || case when(description <> '') then description else 'not set' end || '.' as reason,
login
from
github_my_organization

Tags