File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -247,7 +247,11 @@ async function run(startedAt: Date) {
247247 getTemporaryDirectory ( ) ,
248248 logger ,
249249 ) ;
250-
250+ // Fetch the values of known repository properties that affect us.
251+ const repositoryPropertiesResult = await loadRepositoryProperties (
252+ repositoryNwo ,
253+ logger ,
254+ ) ;
251255 // Create a unique identifier for this run.
252256 const jobRunUuid = uuidV4 ( ) ;
253257 logger . info ( `Job run UUID is ${ jobRunUuid } .` ) ;
@@ -345,10 +349,6 @@ async function run(startedAt: Date) {
345349
346350 analysisKinds = await getAnalysisKinds ( logger ) ;
347351 const debugMode = getOptionalInput ( "debug" ) === "true" || core . isDebug ( ) ;
348- const repositoryPropertiesResult = await loadRepositoryProperties (
349- repositoryNwo ,
350- logger ,
351- ) ;
352352 const repositoryProperties = repositoryPropertiesResult . orElse ( { } ) ;
353353 const fileCoverageResult = await getFileCoverageInformationEnabled (
354354 debugMode ,
You can’t perform that action at this time.
0 commit comments