From c3dfe576bd8c9f9a3fba1ee0e4b6a91d8c4d5404 Mon Sep 17 00:00:00 2001 From: Goooler Date: Thu, 8 Aug 2024 14:01:05 +0800 Subject: [PATCH] Cat notes --- .github/workflows/notes.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/notes.yml diff --git a/.github/workflows/notes.yml b/.github/workflows/notes.yml new file mode 100644 index 00000000..54ea315f --- /dev/null +++ b/.github/workflows/notes.yml @@ -0,0 +1,16 @@ +on: + push: + branches: + - * + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Extract release notes + uses: ffurrer2/extract-release-notes@v2 + with: + changelog_file: src/docs/changes/README.md + release_notes_file: RELEASE_NOTES.md + - name: Print + run: cat RELEASE_NOTES.md \ No newline at end of file