File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ ID : all_github_container_package 
2+ Title : Find all Container Packages to be utilized in tasks 
3+ Description : Find all Container Packages in GitHub for tasks 
4+ IntegrationType :
5+   - github_organization 
6+ Query :
7+   Engine : CloudQL-v0.0.1 
8+   KeyTablesAndColumns : [ github_container_package: name ] 
9+   Parameters :
10+     - Key : github_package 
11+       Required : true 
12+       DefaultValue : " *" 
13+     - Key : limit_of_packages 
14+       Required : true 
15+       DefaultValue : " 50" 
16+   QueryToExecute : | 
17+     SELECT 
18+       id, 
19+       name, 
20+       digest, 
21+       platform_integration_id 
22+     FROM 
23+       github_container_package 
24+     WHERE 
25+       ( 
26+         COALESCE('{{.github_package}}', '*') = '*' 
27+         OR name = ANY(STRING_TO_ARRAY('{{.github_package}}', ',')) 
28+       ) 
29+       LIMIT {{.limit_of_packages}}; 
30+ Tags : [] 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments