forked from SpecterOps/openhound-github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnodes.py
More file actions
56 lines (43 loc) · 1.23 KB
/
Copy pathnodes.py
File metadata and controls
56 lines (43 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Application nodes
APP = "GH_App"
APP_INSTALLATION = "GH_AppInstallation"
# Branch and protection nodes
BRANCH = "GH_Branch"
BRANCH_PROTECTION_RULE = "GH_BranchProtectionRule"
# Environment nodes
ENVIRONMENT = "GH_Environment"
ENVIRONMENT_SECRET = "GH_EnvironmentSecret"
ENVIRONMENT_VARIABLE = "GH_EnvironmentVariable"
# Identity nodes
EXTERNAL_IDENTITY = "GH_ExternalIdentity"
SAML_IDENTITY_PROVIDER = "GH_SamlIdentityProvider"
# Organization nodes
ORGANIZATION = "GH_Organization"
ORG_ROLE = "GH_OrgRole"
ORG_SECRET = "GH_OrgSecret"
ORG_VARIABLE = "GH_OrgVariable"
# Personal access token nodes
PERSONAL_ACCESS_TOKEN = "GH_PersonalAccessToken"
PERSONAL_ACCESS_TOKEN_REQUEST = "GH_PersonalAccessTokenRequest"
# Repository nodes
REPOSITORY = "GH_Repository"
REPO_ROLE = "GH_RepoRole"
REPO_SECRET = "GH_RepoSecret"
REPO_VARIABLE = "GH_RepoVariable"
REPO_RUNNER = "GH_RepoRunner"
DEFAULT_ROLE = "GH_RepoRole"
# Runner nodes
RUNNER = "GH_Runner"
RUNNER_GROUP = "GH_RunnerGroup"
ORG_RUNNER = "GH_OrgRunner"
# Security nodes
SECRET_SCANNING_ALERT = "GH_SecretScanningAlert"
SECRET = "GH_Secret"
VARIABLE = "GH_Variable"
# Team nodes
TEAM = "GH_Team"
TEAM_ROLE = "GH_TeamRole"
# User nodes
USER = "GH_User"
# Workflow nodes
WORKFLOW = "GH_Workflow"