Skip to content

Pipeline ci summary-link

pipeline ci summary-link - Generate diagnostic markdown for CI summaries

Generate a markdown code block with gh CLI commands for diagnosing CI failures.

This command outputs markdown that can be piped directly into $GITHUB_STEP_SUMMARY. The generated commands use the actual run ID and repository so they can be copy-pasted directly.

Flags

Flag Description
--type Failure type: build, test, container, release, docs (default: build)
--artifact Artifact name to include in download command
--image Container image for container-type diagnostics
--workflow CI workflow name for release-type diagnostics
--commit Commit SHA for release-type diagnostics

Notes

Expected Output:

  • Markdown code block with gh CLI diagnostic commands
  • Commands use actual run ID and repository
  • Suitable for piping to $GITHUB_STEP_SUMMARY

Examples

pipeline ci summary-link 12345678                    # Basic diagnostic link
pipeline ci summary-link 12345678 --type test       # Include artifact download
pipeline ci summary-link 12345678 --artifact results # Specific artifact name
pipeline ci summary-link 12345678 --type container   # Container-specific diagnostics

In a workflow:
go run ./go/eac/commands pipeline ci summary-link ${ { github.run_id } } >> $GITHUB_STEP_SUMMARY

See Also


Tutorials | How-to Guides | Explanation | Reference

You are here: Reference — information-oriented technical descriptions of the system.