From 9c013f6f01546b388cc08c6610be46a445d2a89d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 18 Jun 2026 22:24:51 +0000 Subject: [PATCH] Fix gofmt formatting in compiler_safe_output_jobs.go The previous commit (#40161) left a doc comment in buildSafeOutputsJobs unformatted, which fails CI's fmt-check (make lint). Reformat the comment block to satisfy gofmt. Co-Authored-By: Claude Opus 4.8 (1M context) --- pkg/workflow/compiler_safe_output_jobs.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/workflow/compiler_safe_output_jobs.go b/pkg/workflow/compiler_safe_output_jobs.go index 64ab40a60e4..c74aa11e4d3 100644 --- a/pkg/workflow/compiler_safe_output_jobs.go +++ b/pkg/workflow/compiler_safe_output_jobs.go @@ -164,9 +164,9 @@ func (c *Compiler) buildSafeOutputsJobs(data *WorkflowData, jobName, markdownPat // - has an `if:` that checks needs.safe_outputs.outputs.call_workflow_name // - uses: the relative path to the worker's .lock.yml (or .yml) // - forwards declared workflow_call inputs in `with:` so worker steps can reference inputs. directly: -// - non-payload inputs: `fromJSON(needs.safe_outputs.outputs.call_workflow_payload).` -// - `payload` is forwarded as the raw transport only when the worker declares it -// (GitHub Actions rejects undeclared inputs) +// - non-payload inputs: `fromJSON(needs.safe_outputs.outputs.call_workflow_payload).` +// - `payload` is forwarded as the raw transport only when the worker declares it +// (GitHub Actions rejects undeclared inputs) // - inherits all caller secrets via `secrets: inherit` // - includes a job-level `permissions:` block that is the union of all the // worker's job-level permissions, so GitHub allows the nested jobs to run