File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ import { CodeQL } from "./codeql";
1414import { getRawLanguagesNoAutodetect } from "./config-utils" ;
1515import { EnvVar } from "./environment" ;
1616import { initFeatures } from "./feature-flags" ;
17+ import { loadRepositoryProperties } from "./feature-flags/properties" ;
1718import { initCodeQL } from "./init" ;
1819import { Logger } from "./logging" ;
1920import { getRepositoryNwo } from "./repository" ;
@@ -123,6 +124,13 @@ async function run({
123124 logger ,
124125 ) ;
125126
127+ // Fetch the values of known repository properties that affect us.
128+ const repositoryPropertiesResult = await loadRepositoryProperties (
129+ repositoryNwo ,
130+ logger ,
131+ ) ;
132+ const repositoryProperties = repositoryPropertiesResult . orElse ( { } ) ;
133+
126134 const jobRunUuid = uuidV4 ( ) ;
127135 logger . info ( `Job run UUID is ${ jobRunUuid } .` ) ;
128136 core . exportVariable ( EnvVar . JOB_RUN_UUID , jobRunUuid ) ;
You can’t perform that action at this time.
0 commit comments