Skip to content

Commit 4c3ca81

Browse files
committed
Always output summary to GitHub step summary
Move step summary output outside the AI intro conditional so it runs for all periods (weekly, monthly, quarterly).
1 parent 21aa4db commit 4c3ca81

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/reporting-release-summary.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,9 @@ jobs:
241241
print("Prepended AI intro:")
242242
print(intro)
243243
PY
244-
cat summary.md >> "$GITHUB_STEP_SUMMARY"
244+
245+
- name: "Output summary to step summary"
246+
run: cat summary.md >> "$GITHUB_STEP_SUMMARY"
245247

246248
- uses: ncipollo/release-action@v1
247249
if: ${{ env.RELEASE_ENABLED == 'true' }}

0 commit comments

Comments
 (0)