From b3282458acced929d40e01bf95c1e638bde2b8cb Mon Sep 17 00:00:00 2001 From: Benjamin DeMann Date: Tue, 3 Dec 2024 14:28:01 -0700 Subject: [PATCH] standardize output --- .github/actions/determine_workflow_config/action.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/actions/determine_workflow_config/action.yml b/.github/actions/determine_workflow_config/action.yml index 8a11653de9..aa4e8f1b42 100644 --- a/.github/actions/determine_workflow_config/action.yml +++ b/.github/actions/determine_workflow_config/action.yml @@ -74,10 +74,9 @@ runs: - id: echo-outputs shell: bash run: | - echo "=== Test Conditions Outputs ===" + echo "Test Conditions Outputs:" echo "exclude-slow: ${{ steps.determine_workflow_config.outputs.exclude-slow }}" echo "exclude-unstable: ${{ steps.determine_workflow_config.outputs.exclude-unstable }}" echo "exclude-release-only: ${{ steps.determine_workflow_config.outputs.exclude-release-only }}" echo "link-azle: ${{ steps.determine_workflow_config.outputs.link-azle }}" echo "fuzz: ${{ steps.determine_workflow_config.outputs.fuzz }}" - echo "==========================="