diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..00e2cfc --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,20 @@ +changelog: + exclude: + labels: + - chore + categories: + - title: Bug Fixes 🐞 + labels: + - bug + - title: Features ✨ + labels: + - enhancement + - title: Docs 📚 + labels: + - documentation + - title: Other Changes + labels: + - '*' + exclude: + labels: + - chore diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml new file mode 100644 index 0000000..892ec54 --- /dev/null +++ b/.github/workflows/create-release.yml @@ -0,0 +1,20 @@ +- name: Create Release + +on: + push: + tags: + - 'v*' + +jobs: + create-release: + name: Create Release + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@v4 + - name: Create Release + uses: softprops/action-gh-release@v2 + with: + generate_release_notes: true + prerelease: true