We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b30911 commit 233a036Copy full SHA for 233a036
1 file changed
scripts/src/buildTypeScript.ts
@@ -56,7 +56,7 @@ if (!isCustomCommitRange) {
56
if (isPR) {
57
// This is a PR run. Pull the branch info from the PR.
58
const prefix = "refs/pull/";
59
- assert(ref.startsWith(prefix), `Expected ref to start with ${prefix}`);
+ assert(ref.startsWith(prefix), `Expected ref to start with ${prefix}, instead got ${ref}`);
60
61
if (args.baseline) {
62
const prNumber = ref.slice(prefix.length).split("/")[0];
0 commit comments