Name |
Secret |
Visibility |
Selected Repos |
Resolved |
{% for secret in config.secrets|sort(attribute='name') %}
{{ secret.name }} |
{{ secret.value }} |
{{ secret.visibility }} |
{% if secret.selected_repositories %}
{{ secret.selected_repositories|pprint }}
{% endif %}
|
{% if not secret|has_dummy_secret %}
{% else %}
{% endif %}
|
{% endfor %}
Name |
Value |
Visibility |
Selected Repos |
{% for variable in config.variables|sort(attribute='name') %}
{{ variable.name }} |
{{ variable.value }} |
{{ variable.visibility }} |
{% if variable.selected_repositories %}
{{ variable.selected_repositories|pprint }}
{% endif %}
|
{% endfor %}
URL |
Active |
Events |
Uses SSL |
Resolved Secret |
{% for webhook in config.webhooks|sort(attribute='url') %}
{{ webhook.url }} |
{% if webhook.active == true %}
{% else %}
{% endif %}
|
{% for event in webhook.events %}
- {{ event }}
{% endfor %}
|
{% if webhook.insecure_ssl == "0" %}
{% else %}
{% endif %}
|
{% if webhook.secret %}
{% if not webhook|has_dummy_secret %}
{% else %}
{% endif %}
{% else %}
{% endif %}
|
{% endfor %}
Repository |
Branch Protections |
Secrets |
Variables |
Webhooks |
Secret Scanning |
Private Vulnerability Reporting |
{% for repo in config.repositories|sort(attribute='name') %}
{% if repo.archived == true %}
{% endif %}
{{ repo.name }}
|
{% if repo.archived == true %}
{% elif repo.branch_protection_rules|length > 0 or repo.rulesets|length > 0 %}
{% else %}
{% endif %}
|
{% if repo.secrets|length > 0 %}
{% if not repo.secrets|has_dummy_secrets %}
{% else %}
{% endif %}
{% else %}
{% endif %}
|
{% if repo.variables|length > 0 %}
{% else %}
{% endif %}
|
{% if repo.webhooks|length > 0 %}
{% if not repo.webhooks|has_dummy_secrets %}
{% else %}
{% endif %}
{% else %}
{% endif %}
|
{% if repo.archived == true %}
{% elif repo.secret_scanning_push_protection == "enabled" %}
{% elif repo.secret_scanning == "enabled" %}
{% else %}
{% endif %}
|
{% if repo.archived == true %}
{% elif repo.private_vulnerability_reporting_enabled == true %}
{% elif repo.private_vulnerability_reporting_enabled == false %}
{% else %}
{% endif %}
|
{% endfor %}