Skip to content

Commit c5acfe3

Browse files
authored
Merge pull request #1860 from github/aeisenberg/better-error-messages
Add better error messages when determining merge-base
2 parents 8ecc33d + 4697868 commit c5acfe3

7 files changed

+132
-26
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ No user facing changes.
1111
- Update default CodeQL bundle version to 2.14.3. [#1845](https://github.com/github/codeql-action/pull/1845)
1212
- Fixed a bug in CodeQL Action 2.21.3 onwards that affected beta support for [Project Lombok](https://projectlombok.org/) when analyzing Java. The environment variable `CODEQL_EXTRACTOR_JAVA_RUN_ANNOTATION_PROCESSORS` will now be respected if it was manually configured in the workflow. [#1844](https://github.com/github/codeql-action/pull/1844)
1313
- Enable support for Kotlin 1.9.20 when running with CodeQL CLI v2.13.4 through v2.14.3. [#1853](https://github.com/github/codeql-action/pull/1853)
14+
- Better error message when there is a failure to determine the merge base of the code to analysis. [#1860](https://github.com/github/codeql-action/pull/1860)
1415

1516
## 2.21.4 - 14 Aug 2023
1617

lib/actions-util.js

+21-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/actions-util.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/actions-util.test.js

+29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/actions-util.test.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/actions-util.test.ts

+48
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import * as fs from "fs";
22
import * as path from "path";
33

4+
import * as core from "@actions/core";
45
import test from "ava";
56
import * as sinon from "sinon";
67

@@ -267,3 +268,50 @@ test("isAnalyzingDefaultBranch()", async (t) => {
267268
getAdditionalInputStub.restore();
268269
});
269270
});
271+
272+
test("determineMergeBaseCommitOid non-pullrequest", async (t) => {
273+
const infoStub = sinon.stub(core, "info");
274+
275+
process.env["GITHUB_EVENT_NAME"] = "hucairz";
276+
process.env["GITHUB_SHA"] = "100912429fab4cb230e66ffb11e738ac5194e73a";
277+
const result = await actionsUtil.determineMergeBaseCommitOid(__dirname);
278+
t.deepEqual(result, undefined);
279+
t.deepEqual(0, infoStub.callCount);
280+
281+
infoStub.restore();
282+
});
283+
284+
test("determineMergeBaseCommitOid no error", async (t) => {
285+
const infoStub = sinon.stub(core, "info");
286+
287+
process.env["GITHUB_EVENT_NAME"] = "pull_request";
288+
process.env["GITHUB_SHA"] = "100912429fab4cb230e66ffb11e738ac5194e73a";
289+
await actionsUtil.determineMergeBaseCommitOid(path.join(__dirname, "../.."));
290+
t.deepEqual(1, infoStub.callCount);
291+
t.assert(
292+
infoStub.firstCall.args[0].startsWith(
293+
"The checkout path provided to the action does not appear to be a git repository.",
294+
),
295+
);
296+
297+
infoStub.restore();
298+
});
299+
300+
test("determineMergeBaseCommitOid other error", async (t) => {
301+
const infoStub = sinon.stub(core, "info");
302+
303+
process.env["GITHUB_EVENT_NAME"] = "pull_request";
304+
process.env["GITHUB_SHA"] = "100912429fab4cb230e66ffb11e738ac5194e73a";
305+
const result = await actionsUtil.determineMergeBaseCommitOid(
306+
path.join(__dirname, "../../i-dont-exist"),
307+
);
308+
t.deepEqual(result, undefined);
309+
t.deepEqual(1, infoStub.callCount);
310+
t.assert(
311+
infoStub.firstCall.args[0].startsWith(
312+
"Failed to call git to determine merge base.",
313+
),
314+
);
315+
316+
infoStub.restore();
317+
});

src/actions-util.ts

+31-15
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ export const getCommitOid = async function (
6363
// the merge commit, which must mean that git is available.
6464
// Even if this does go wrong, it's not a huge problem for the alerts to
6565
// reported on the merge commit.
66+
let stderr = "";
6667
try {
6768
let commitOid = "";
6869
await new toolrunner.ToolRunner(
@@ -75,19 +76,25 @@ export const getCommitOid = async function (
7576
commitOid += data.toString();
7677
},
7778
stderr: (data) => {
78-
process.stderr.write(data);
79+
stderr += data.toString();
7980
},
8081
},
8182
cwd: checkoutPath,
8283
},
8384
).exec();
8485
return commitOid.trim();
8586
} catch (e) {
86-
core.info(
87-
"Could not determine current commit SHA using git. Continuing with data from user input or environment.",
88-
);
89-
core.debug(`Reason: ${(e as Error).message}`);
90-
core.debug((e as Error).stack || "NO STACK");
87+
if (stderr.includes("not a git repository")) {
88+
core.info(
89+
"Could not determine current commit SHA using git. Continuing with data from user input or environment. " +
90+
"The checkout path provided to the action does not appear to be a git repository.",
91+
);
92+
} else {
93+
core.info(
94+
`Could not determine current commit SHA using git. Continuing with data from user input or environment. ${stderr}`,
95+
);
96+
}
97+
9198
return getOptionalInput("sha") || getRequiredEnvParam("GITHUB_SHA");
9299
}
93100
};
@@ -96,15 +103,17 @@ export const getCommitOid = async function (
96103
* If the action was triggered by a pull request, determine the commit sha of the merge base.
97104
* Returns undefined if run by other triggers or the merge base cannot be determined.
98105
*/
99-
export const determineMergeBaseCommitOid = async function (): Promise<
100-
string | undefined
101-
> {
106+
export const determineMergeBaseCommitOid = async function (
107+
checkoutPathOverride?: string,
108+
): Promise<string | undefined> {
102109
if (getWorkflowEventName() !== "pull_request") {
103110
return undefined;
104111
}
105112

106113
const mergeSha = getRequiredEnvParam("GITHUB_SHA");
107-
const checkoutPath = getOptionalInput("checkout_path");
114+
const checkoutPath =
115+
checkoutPathOverride ?? getOptionalInput("checkout_path");
116+
let stderr = "";
108117

109118
try {
110119
let commitOid = "";
@@ -129,7 +138,7 @@ export const determineMergeBaseCommitOid = async function (): Promise<
129138
}
130139
},
131140
stderr: (data) => {
132-
process.stderr.write(data);
141+
stderr += data.toString();
133142
},
134143
},
135144
cwd: checkoutPath,
@@ -146,10 +155,17 @@ export const determineMergeBaseCommitOid = async function (): Promise<
146155
}
147156
return undefined;
148157
} catch (e) {
149-
core.info(
150-
`Failed to call git to determine merge base. Continuing with data from environment: ${e}`,
151-
);
152-
core.info((e as Error).stack || "NO STACK");
158+
if (stderr.includes("not a git repository")) {
159+
core.info(
160+
"The checkout path provided to the action does not appear to be a git repository. " +
161+
"Will calculate the merge base on the server.",
162+
);
163+
} else {
164+
core.info(
165+
`Failed to call git to determine merge base. Will calculate the merge base on ` +
166+
`the server. Reason: ${stderr}`,
167+
);
168+
}
153169
return undefined;
154170
}
155171
};

0 commit comments

Comments
 (0)