Skip to content

Commit 6bd84b6

Browse files
committed
Rename to "unhandled"
1 parent 229e0cd commit 6bd84b6

17 files changed

+33
-33
lines changed

lib/analyze-action.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/autobuild-action.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/init-action-post.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/init-action.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/resolve-environment-action.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/setup-codeql-action.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/start-proxy-action.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/upload-sarif-action.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/analyze-action.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import {
4141
createStatusReportBase,
4242
DatabaseCreationTimings,
4343
getActionsStatus,
44-
sendUnexpectedErrorStatusReport,
44+
sendUnhandledErrorStatusReport,
4545
StatusReportBase,
4646
} from "./status-report";
4747
import {
@@ -536,7 +536,7 @@ async function runWrapper() {
536536
await runPromise;
537537
} catch (error) {
538538
core.setFailed(`analyze action failed: ${util.getErrorMessage(error)}`);
539-
await sendUnexpectedErrorStatusReport(
539+
await sendUnhandledErrorStatusReport(
540540
ActionName.Analyze,
541541
startedAt,
542542
error,

src/autobuild-action.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {
1717
getActionsStatus,
1818
createStatusReportBase,
1919
sendStatusReport,
20-
sendUnexpectedErrorStatusReport,
20+
sendUnhandledErrorStatusReport,
2121
ActionName,
2222
} from "./status-report";
2323
import { endTracingForCluster } from "./tracer-config";
@@ -149,7 +149,7 @@ async function runWrapper() {
149149
await run(startedAt);
150150
} catch (error) {
151151
core.setFailed(`autobuild action failed. ${getErrorMessage(error)}`);
152-
await sendUnexpectedErrorStatusReport(
152+
await sendUnhandledErrorStatusReport(
153153
ActionName.Autobuild,
154154
startedAt,
155155
error,

0 commit comments

Comments
 (0)