[8.9] chore(NA): changing a small comment on bazel runner package to test run auto approve actions on backport (#160778) (#160781)

# Backport

This will backport the following commits from `main` to `8.9`:
- [chore(NA): changing a small comment on bazel runner package to test
run auto approve actions on backport
(#160778)](https://github.com/elastic/kibana/pull/160778)

<!--- Backport version: 8.9.7 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sqren/backport)

<!--BACKPORT [{"author":{"name":"Tiago
Costa","email":"tiago.costa@elastic.co"},"sourceCommit":{"committedDate":"2023-06-28T16:03:50Z","message":"chore(NA):
changing a small comment on bazel runner package to test run auto
approve actions on backport (#160778)\n\nThis PR just intends to
introduce a small comment change to test our\r\nauto approval action for
backport
prs.","sha":"27b82d9995e6fa1623233bfeb94fb06242edf9df","branchLabelMapping":{"^v8.10.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["chore","Team:Operations","release_note:skip","v8.9.0","v8.10.0"],"number":160778,"url":"https://github.com/elastic/kibana/pull/160778","mergeCommit":{"message":"chore(NA):
changing a small comment on bazel runner package to test run auto
approve actions on backport (#160778)\n\nThis PR just intends to
introduce a small comment change to test our\r\nauto approval action for
backport
prs.","sha":"27b82d9995e6fa1623233bfeb94fb06242edf9df"}},"sourceBranch":"main","suggestedTargetBranches":["8.9"],"targetPullRequestStates":[{"branch":"8.9","label":"v8.9.0","labelRegex":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"main","label":"v8.10.0","labelRegex":"^v8.10.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/160778","number":160778,"mergeCommit":{"message":"chore(NA):
changing a small comment on bazel runner package to test run auto
approve actions on backport (#160778)\n\nThis PR just intends to
introduce a small comment change to test our\r\nauto approval action for
backport prs.","sha":"27b82d9995e6fa1623233bfeb94fb06242edf9df"}}]}]
BACKPORT-->

Co-authored-by: Tiago Costa <tiago.costa@elastic.co>
This commit is contained in:
Kibana Machine 2023-06-28 13:21:52 -04:00 committed by GitHub
parent 2892b240e1
commit d4f5218145
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);