remove octokit from trusted orgs for now - reduce PR scope

This commit is contained in:
Kylie Stradley
2024-10-24 16:27:53 -04:00
parent f8be8e768f
commit f716222801

View File

@@ -18,7 +18,7 @@ private predicate isPinnedCommit(string version) { version.regexpMatch("^[A-Fa-f
bindingset[repo]
private predicate isTrustedOrg(string repo) {
exists(string org | org in ["actions", "github", "advanced-security", "octokit"] | repo.matches(org + "/%"))
exists(string org | org in ["actions", "github", "advanced-security"] | repo.matches(org + "/%"))
}
from UsesStep uses, string repo, string version, Workflow workflow, string name