diff --git a/.github/workflows/preview-changelog.yml b/.github/workflows/preview-changelog.yml index 232dc6f..2eb1042 100644 --- a/.github/workflows/preview-changelog.yml +++ b/.github/workflows/preview-changelog.yml @@ -11,3 +11,14 @@ jobs: uses: CodingWithCalvin/.github/.github/workflows/generate-changelog.yml@main secrets: inherit + summary: + name: Summary + needs: preview + runs-on: ubuntu-latest + steps: + - name: Write changelog to summary + run: | + echo "## 📋 Preview Release Notes" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + echo "${{ needs.preview.outputs.changelog }}" >> $GITHUB_STEP_SUMMARY +