diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..79475ef --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,10 @@ +changelog: + exclude: + labels: + - housekeeping + authors: + - gluon-bot + categories: + - title: What’s Changed + labels: + - "*" \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..401976c --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,16 @@ +name: Release +on: + push: + tags: + - '*' + +jobs: + build: + name: release-notes + runs-on: ubuntu-latest + steps: + - name: Create GitHub release + uses: softprops/action-gh-release@v1 + with: + token: ${{ secrets.PAT }} + generate_release_notes: true \ No newline at end of file