diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml new file mode 100644 index 0000000..8ca9fff --- /dev/null +++ b/.github/release-drafter.yml @@ -0,0 +1,14 @@ +template: | + ## Whatโ€™s New in MSI Viewer $RESOLVED_VERSION + + $CHANGES + +categories: + - title: '๐Ÿš€ Features' + labels: ['feature'] + - title: '๐Ÿ› Bug Fixes' + labels: ['bugfix'] + - title: '๐Ÿงฐ Maintenance & Documentation' + labels: ['maintenance', 'dependencies', 'documentation'] + +change-template: '- $TITLE @$AUTHOR (#$NUMBER)' diff --git a/.github/workflows/release-notes.yml b/.github/workflows/release-notes.yml new file mode 100644 index 0000000..f1d04a8 --- /dev/null +++ b/.github/workflows/release-notes.yml @@ -0,0 +1,13 @@ +name: Update Release Notes + +on: + push: + branches: [master] + +jobs: + update_release_draft: + runs-on: ubuntu-latest + steps: + - uses: release-drafter/release-drafter@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}