Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Jan 12, 2026

The firewall log analysis step was named "Firewall summary" and only wrote to $GITHUB_STEP_SUMMARY, making logs invisible in the Actions output view.

Changes

  • Renamed step from "Firewall summary" to "Print firewall logs"
  • Changed output from >> redirect to | tee -a to write to both stdout and step summary
  • Recompiled all workflow lock files

Before:

- name: Firewall summary
  run: awf logs summary >> "$GITHUB_STEP_SUMMARY"

After:

- name: Print firewall logs
  run: awf logs summary | tee -a "$GITHUB_STEP_SUMMARY"

Logs are now visible in real-time during workflow execution while still persisting in the step summary.

Original prompt

Rename firewall summary to "print firewall logs"

Also print to the stdout so that the logs are visible in the actions output view


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Copilot AI and others added 2 commits January 12, 2026 14:49
- Changed step name from 'Firewall summary' to 'Print firewall logs'
- Modified command to use 'tee -a' instead of '>>' to output to both stdout and GITHUB_STEP_SUMMARY
- This makes firewall logs visible in the GitHub Actions output view while still preserving them in the step summary
- Recompiled all workflow lock files to apply the changes

Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot AI changed the title [WIP] Rename firewall summary to print firewall logs Rename firewall step and output logs to stdout Jan 12, 2026
Copilot AI requested a review from pelikhan January 12, 2026 14:55
@pelikhan pelikhan marked this pull request as ready for review January 12, 2026 14:59
@pelikhan pelikhan merged commit be2c9a4 into main Jan 12, 2026
@pelikhan pelikhan deleted the copilot/rename-firewall-summary-to-print-logs branch January 12, 2026 14:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants