Control: Branches should automatically be deleted after merging in each private repository
Description
Automatically delete branches after merging to maintain only your active branches.
Usage
Run the control in your terminal:
powerpipe control run github_sherlock.control.private_repo_delete_branch_on_merge_enabledSnapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run github_sherlock.control.private_repo_delete_branch_on_merge_enabled --shareSteampipe Tables
SQL
select  url as resource,  case    when delete_branch_on_merge then 'ok'    else 'alarm'  end as status,  name_with_owner || ' delete branch on merge is ' || case when(delete_branch_on_merge)::bool then 'enabled' else 'disabled' end || '.' as reason,  name_with_ownerfrom  github_my_repositorywhere  visibility = 'PRIVATE' and is_fork = false