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

This PR just intends to introduce a small comment change to test our
auto approval action for backport prs.
This commit is contained in:
Tiago Costa 2023-06-28 17:03:50 +01:00 committed by GitHub
parent d7e8eaa1a2
commit 27b82d9995
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);