Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 1.5 KB

File metadata and controls

37 lines (31 loc) · 1.5 KB

GH_RepoSecret

General Information

Represents a repository-level GitHub Actions secret. These are secrets defined directly on a specific repository and are only accessible to workflows running in that repository.

Properties

Property Type Description
name string The node name used for matching and display.
displayname string The human-readable display name.
environmentid string The identifier of the GitHub environment where this node was collected.
last_seen datetime The timestamp when this node was last observed during collection.
node_id string The stable identifier used as the OpenGraph node ID; this is the native GitHub node ID where available.
repository_name string The name of the containing repository.
repository_id string The node_id of the containing repository.
environment_name string The name of the environment (GitHub organization).
created_at string When the secret was created.
updated_at string When the secret was last updated.
visibility string The secret's visibility scope.
query_visible_repositories string Query for visible repositories.

Diagram

graph LR
    n0["GH_Repository"]
    n1["GH_RepoSecret"]
    n2["GH_WorkflowJob"]
    n3["GH_WorkflowStep"]
    n0 -.->|GH_Contains| n1
    n0 -->|GH_HasSecret| n1
    n2 -->|GH_CanAccessSecret| n1
    n2 -.->|GH_UsesSecret| n1
    n3 -.->|GH_UsesSecret| n1
Loading