diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml new file mode 100644 index 000000000..27a4fa76b --- /dev/null +++ b/.github/release-drafter.yml @@ -0,0 +1,14 @@ +name-template: $NEXT_PATCH_VERSION +tag-template: $NEXT_PATCH_VERSION +template: | + ## What’s Changed + + $CHANGES + +categories: + - title: New features + label: new-feature + - title: Fixes + label: bug + - title: Improvements + label: improvement diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 93c06f84c..bc7f89f70 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,3 +28,7 @@ jobs: - name: Build run: ci/build.sh + + - uses: release-drafter/release-drafter@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}