Skip to content

Commit

Permalink
Add languages and build_mode to init success status report
Browse files Browse the repository at this point in the history
  • Loading branch information
henrymercer committed Feb 29, 2024
1 parent ccd3f02 commit 2307ff5
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion lib/analyze-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/analyze-action.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/autobuild-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/autobuild-action.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions lib/init-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/init-action.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/resolve-environment-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/resolve-environment-action.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/analyze-action.ts
Expand Up @@ -195,7 +195,7 @@ async function run() {
ActionName.Analyze,
"starting",
startedAt,
undefined,
config,
await util.checkDiskUsage(logger),
logger,
),
Expand Down
2 changes: 1 addition & 1 deletion src/autobuild-action.ts
Expand Up @@ -75,7 +75,7 @@ async function run() {
ActionName.Autobuild,
"starting",
startedAt,
undefined,
config,
await checkDiskUsage(logger),
logger,
),
Expand Down
4 changes: 2 additions & 2 deletions src/init-action.ts
Expand Up @@ -113,7 +113,7 @@ async function sendCompletedStatusReport(
ActionName.Init,
getActionsStatus(error),
startedAt,
undefined,
config,
await checkDiskUsage(logger),
logger,
error?.message,
Expand Down Expand Up @@ -231,7 +231,7 @@ async function run() {
ActionName.Init,
"starting",
startedAt,
undefined,
config,
await checkDiskUsage(logger),
logger,
),
Expand Down
2 changes: 1 addition & 1 deletion src/resolve-environment-action.ts
Expand Up @@ -39,7 +39,7 @@ async function run() {
ActionName.ResolveEnvironment,
"starting",
startedAt,
undefined,
config,
await checkDiskUsage(),
logger,
),
Expand Down

0 comments on commit 2307ff5

Please sign in to comment.