Skip to content

Commit

Permalink
minor correction
Browse files Browse the repository at this point in the history
  • Loading branch information
ikhoon committed Aug 21, 2023
1 parent 3346311 commit e94e3ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/comment-build-scan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ async function main(): Promise<void> {
const [jobName, scanUrl]= scan.split(" ");
const job = jobs.find(job => job.name === jobName);
if (job.conclusion === 'success') {
commentBody += `| [${job.name}](${job.url}) | ✅ | ${scanUrl} |\n`;
commentBody += `| [${job.name}](${job.html_url}) | ✅ | ${scanUrl} |\n`;
} else {
commentBody += `| [${job.name}](${job.url}) | ❌ (${job.conclusion}) | ${scanUrl} |\n`;
commentBody += `| [${job.name}](${job.html_url}) | ❌ (${job.conclusion}) | ${scanUrl} |\n`;
}
}

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/gradle-build-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ jobs:
echo "## Build Scan®" >> "$GITHUB_STEP_SUMMARY"
echo "" >> "$GITHUB_STEP_SUMMARY"
rm -rf $BUILD_SCAN_DIR
for SCAN in $(ls $DOWNLOAD_DIR) ; do
mkdir -p $BUILD_SCAN_DIR
echo "🚚 Copying build scan: ${DOWNLOAD_DIR}${SCAN}/ to $BUILD_SCAN_DIR ..."
Expand Down

0 comments on commit e94e3ae

Please sign in to comment.