Skip to content

Commit

Permalink
chore: add small change to trigger risk-free backport (#160795)
Browse files Browse the repository at this point in the history
## Summary
Adding a small change that can be safely backported, to test
auto-approval workflows
  • Loading branch information
delanni authored Jun 28, 2023
1 parent 870d92b commit 8255e8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/kbn-bazel-runner/src/bazel_runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ async function runBazelRunner(runner, args, options = undefined) {
]);

if (process.env.CI && !options?.quiet) {
// on CI it's useful to reduce the logging output, but we still want to see basic info from Bazel so continue to log the INFO: lines from bazel
// on CI it's useful to reduce the logging output, but we still want to see basic info from Bazel so continue to log the INFO: lines from bazel.
for (const line of buffer) {
if (line.startsWith('INFO:') && !line.startsWith('INFO: From ')) {
console.log(options?.logPrefix ? `${options.logPrefix} ${line}` : line);
Expand Down

0 comments on commit 8255e8a

Please sign in to comment.