We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d468ec0 commit a2c5818Copy full SHA for a2c5818
1 file changed
.github/workflows/preview-changelog.yml
@@ -11,3 +11,14 @@ jobs:
11
uses: CodingWithCalvin/.github/.github/workflows/generate-changelog.yml@main
12
secrets: inherit
13
14
+ summary:
15
+ name: Summary
16
+ needs: preview
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - name: Write changelog to summary
20
+ run: |
21
+ echo "## 📋 Preview Release Notes" >> $GITHUB_STEP_SUMMARY
22
+ echo "" >> $GITHUB_STEP_SUMMARY
23
+ echo "${{ needs.preview.outputs.changelog }}" >> $GITHUB_STEP_SUMMARY
24
+
0 commit comments