Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add languages and build_mode to init success status report #2175

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async function run() {
ActionName.ResolveEnvironment,
"starting",
startedAt,
undefined,
config,
await checkDiskUsage(),
logger,
),
Expand Down