Skip to content

Commit b3cbe15

Browse files
committed
fix: rename summary job to prevent duplicate heading in GitHub Actions UI
- Rename job from 'summary' to 'results-summary' to avoid conflict - Simplify step name from 'Test Summary' to 'Summary' - Fixes duplicate 'summary summary' display in GitHub Actions summary section
1 parent 96fc183 commit b3cbe15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test_images.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,12 +120,12 @@ jobs:
120120
IMAGE="${{ env.IMAGE_REGISTRY }}/${{ inputs.package_repository }}:${{ matrix.tag }}"
121121
make test-image IMAGE="$IMAGE" FLAVOR="${{ matrix.flavor }}"
122122
123-
summary:
123+
results-summary:
124124
needs: [setup, test]
125125
runs-on: ubuntu-latest
126126
if: always()
127127
steps:
128-
- name: Test Summary
128+
- name: Summary
129129
run: |
130130
echo "| Input | Value |" >> $GITHUB_STEP_SUMMARY
131131
echo "|-------|-------|" >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)