From 06ea29a32295a43d8a8440d2f0a9c96520c3b721 Mon Sep 17 00:00:00 2001 From: Jason Collins Date: Thu, 21 Mar 2024 10:49:05 -0700 Subject: [PATCH 1/3] Trivial: reduce log spam. --- pkg/common/executor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/common/executor.go b/pkg/common/executor.go index a5eb079b039..24173565884 100644 --- a/pkg/common/executor.go +++ b/pkg/common/executor.go @@ -97,7 +97,7 @@ func NewParallelExecutor(parallel int, executors ...Executor) Executor { errs := make(chan error, len(executors)) if 1 > parallel { - log.Infof("Parallel tasks (%d) below minimum, setting to 1", parallel) + log.Debugf("Parallel tasks (%d) below minimum, setting to 1", parallel) parallel = 1 } From 48397452b1659a513907063e888bf141d435f4e6 Mon Sep 17 00:00:00 2001 From: Jason Collins Date: Fri, 29 Mar 2024 15:30:18 -0700 Subject: [PATCH 2/3] Move set-output log lines to Debug We're finding that secret values from different GHA actions are being exposed in the set-output command output. Moving to Debug level allows us to suppress this output. --- pkg/runner/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/runner/command.go b/pkg/runner/command.go index d79ac03abf5..3315835f49a 100644 --- a/pkg/runner/command.go +++ b/pkg/runner/command.go @@ -115,7 +115,7 @@ func (rc *RunContext) setOutput(ctx context.Context, kvPairs map[string]string, return } - logger.Infof(" \U00002699 ::set-output:: %s=%s", outputName, arg) + logger.Debugf(" \U00002699 ::set-output:: %s=%s", outputName, arg) result.Outputs[outputName] = arg } func (rc *RunContext) addPath(ctx context.Context, arg string) { From 89d72a07006fcac14c8be65e73adaa55a324c6cf Mon Sep 17 00:00:00 2001 From: Jason Collins Date: Thu, 5 Dec 2024 08:39:53 -0800 Subject: [PATCH 3/3] Add .aiexclude. --- .aiexclude | 1 + 1 file changed, 1 insertion(+) create mode 100644 .aiexclude diff --git a/.aiexclude b/.aiexclude new file mode 100644 index 00000000000..06e78c814a6 --- /dev/null +++ b/.aiexclude @@ -0,0 +1 @@ +Is this a valid format for .aiexclude?