Create createchangelog.yml (#2346)

This commit is contained in:
Real-MullaC 2024-07-13 16:58:07 +01:00 committed by GitHub
parent af1743066f
commit 01837b028a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

17
.github/workflows/createchangelog.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: On release published
on:
release:
types: [published]
jobs:
changelog:
name: Update changelog
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: main
- uses: rhysd/changelog-from-release/action@v3
with:
file: /docs/updates.md
github_token: ${{ secrets.GITHUB_TOKEN }}