diff options
Diffstat (limited to '.github/workflows/ci-schedule.yml')
| -rw-r--r-- | .github/workflows/ci-schedule.yml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/.github/workflows/ci-schedule.yml b/.github/workflows/ci-schedule.yml index 3c4ab1c603..5a3c4db607 100644 --- a/.github/workflows/ci-schedule.yml +++ b/.github/workflows/ci-schedule.yml @@ -1,4 +1,4 @@ -# Copyright (C) Project Tick Contributors +# Copyright (C) Project Tick # SPDX-License-Identifier: MIT # # ╔══════════════════════════════════════════════════════════════════╗ @@ -224,10 +224,12 @@ jobs: run: | set -euo pipefail - echo "## Scheduled CI Report — ${{ needs.gate.outputs.group }}" >> "$GITHUB_STEP_SUMMARY" - echo "" >> "$GITHUB_STEP_SUMMARY" - echo "| Job | Result |" >> "$GITHUB_STEP_SUMMARY" - echo "|-----|--------|" >> "$GITHUB_STEP_SUMMARY" + { + echo "## Scheduled CI Report — ${{ needs.gate.outputs.group }}" + echo "" + echo "| Job | Result |" + echo "|-----|--------|" + } >> "$GITHUB_STEP_SUMMARY" FAILED=false report() { |
