Skip to content

Commit

Permalink
verbose logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jake-perkins committed Dec 11, 2024
1 parent b127b11 commit 1e0b4a0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/scripts/bitrise/run-bitrise-e2e-check.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ async function upsertStatusCheck(
process.exit(1);
}

console.log(`Updated existing check: ${statusCheckName} with id ${existingCheck.id} & status ${status} for commit ${commitHash}`);



} else {
console.log(`Check does not exist: ${statusCheckName}, creating...`);
// Create a new status check
Expand All @@ -107,6 +111,8 @@ async function upsertStatusCheck(
);
process.exit(1);
}

console.log(`Created check: ${statusCheckName} with id ${createCheckResponse.data.id} & status ${status} for commit ${commitHash}`);
}
}
// Determine whether E2E should run and provide the associated reason
Expand Down

0 comments on commit 1e0b4a0

Please sign in to comment.