Skip to content

Commit 158d078

Browse files
authored
Merge pull request #2175 from github/henrymercer/fix-languages-init-success
Add `languages` and `build_mode` to `init` `success` status report
2 parents ccd3f02 + 2307ff5 commit 158d078

12 files changed

+14
-14
lines changed

lib/analyze-action.js

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

lib/analyze-action.js.map

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

lib/autobuild-action.js

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

lib/autobuild-action.js.map

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

lib/init-action.js

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

lib/init-action.js.map

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

lib/resolve-environment-action.js

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

lib/resolve-environment-action.js.map

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

src/analyze-action.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ async function run() {
195195
ActionName.Analyze,
196196
"starting",
197197
startedAt,
198-
undefined,
198+
config,
199199
await util.checkDiskUsage(logger),
200200
logger,
201201
),

src/autobuild-action.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ async function run() {
7575
ActionName.Autobuild,
7676
"starting",
7777
startedAt,
78-
undefined,
78+
config,
7979
await checkDiskUsage(logger),
8080
logger,
8181
),

src/init-action.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ async function sendCompletedStatusReport(
113113
ActionName.Init,
114114
getActionsStatus(error),
115115
startedAt,
116-
undefined,
116+
config,
117117
await checkDiskUsage(logger),
118118
logger,
119119
error?.message,
@@ -231,7 +231,7 @@ async function run() {
231231
ActionName.Init,
232232
"starting",
233233
startedAt,
234-
undefined,
234+
config,
235235
await checkDiskUsage(logger),
236236
logger,
237237
),

src/resolve-environment-action.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ async function run() {
3939
ActionName.ResolveEnvironment,
4040
"starting",
4141
startedAt,
42-
undefined,
42+
config,
4343
await checkDiskUsage(),
4444
logger,
4545
),

0 commit comments

Comments
 (0)