MCPcopy Index your code
hub / github.com/github/github-mcp-server / LabelActionsResult

Function LabelActionsResult

pkg/ifc/ifc.go:233–238  ·  view source on GitHub ↗

LabelActionsResult returns the IFC label for GitHub Actions resources: workflow definitions, runs, jobs, artifacts, and job logs. Integrity is untrusted. Workflow logs echo arbitrary text produced during a run — including output derived from pull-request branches, dependency downloads, and other at

(isPrivate bool)

Source from the content-addressed store, hash-verified

231//
232// Confidentiality follows repository visibility.
233func LabelActionsResult(isPrivate bool) SecurityLabel {
234 if isPrivate {
235 return PrivateUntrusted()
236 }
237 return PublicUntrusted()
238}
239
240// LabelSecurityAlert returns the IFC label for security findings: code
241// scanning alerts, secret scanning alerts, and Dependabot alerts.

Callers 1

TestLabelActionsResultFunction · 0.85

Calls 2

PrivateUntrustedFunction · 0.85
PublicUntrustedFunction · 0.85

Tested by 1

TestLabelActionsResultFunction · 0.68