From d1b06f0be3637cfbbc7881203a76baa1ae84ee86 Mon Sep 17 00:00:00 2001 From: Reinier van der Leer Date: Fri, 1 Mar 2024 11:27:26 +0100 Subject: [PATCH] fix(ci/arena): Improve output format --- .github/workflows/arena-intake.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/arena-intake.yml b/.github/workflows/arena-intake.yml index 9221c79a..577231bc 100644 --- a/.github/workflows/arena-intake.yml +++ b/.github/workflows/arena-intake.yml @@ -83,22 +83,23 @@ jobs: console.log(`➡️ Checking ${newArenaFileName} against existing entries...`); for (const file of allArenaFiles) { + const existingEntryName = path.basename(file); if ( - path.basename(file) === newArenaFileName + existingEntryName === newArenaFileName && newArenaFile.status != 'added' ) { flagForManualCheck = true; continue; } - console.debug(`Checking against ${file}...`); + console.debug(`Checking against ${existingEntryName}...`); const arenaEntry = JSON.parse(fs.readFileSync(file)); if (arenaEntry.github_repo_url === newArenaEntry.github_repo_url) { - console.log('⚠️ Duplicate detected: ${file}'); + console.log('⚠️ Duplicate detected: ${existingEntryName}'); issues.push( - `The github_repo_url specified in __${newArenaFileName}__ ` - + `already exists in __${file}__. ` + `The \`github_repo_url\` specified in __${newArenaFileName}__ ` + + `already exists in __${existingEntryName}__. ` + `This PR will be closed as duplicate.` ) close = true;