hasGitHubLockdownExplicitlySet checks if lockdown field is explicitly set in GitHub tool config
(githubTool map[string]any)
| 185 | |
| 186 | // hasGitHubLockdownExplicitlySet checks if lockdown field is explicitly set in GitHub tool config |
| 187 | func hasGitHubLockdownExplicitlySet(githubTool map[string]any) bool { |
| 188 | _, exists := githubTool["lockdown"] |
| 189 | return exists |
| 190 | } |
| 191 | |
| 192 | // getGitHubToolsets extracts the toolsets configuration from GitHub tool |
| 193 | // Expands "default" to individual toolsets for action-friendly compatibility |
no outgoing calls
no test coverage detected