diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml deleted file mode 100644 index 1157e22..0000000 --- a/.github/release-drafter.yml +++ /dev/null @@ -1,32 +0,0 @@ -name-template: '$NEXT_PATCH_VERSION' -tag-template: 'v$NEXT_PATCH_VERSION' -prerelease: false -categories: - - title: 🐛 Bug Fixes - labels: - - bug - - title: 📦 Dependency updates - labels: - # Default label used by dependabot - - dependencies -exclude-labels: - - invalid - - no-changelog - - skip-changelog - - reverted - - wontfix -template: | - Thanks to all the contributors of this release 🌈: $CONTRIBUTORS - - - See [milestone $NEXT_PATCH_VERSION](https://github.com/process-analytics/mxgraph-sketch/milestone/x?closed=1) to get the list of issues covered by this release. - - # Highlights - - - # What's Changed - $CHANGES - -replacers: - - search: '@dependabot-preview' - replace: '@dependabot' diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..5adda6a --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,19 @@ +changelog: + exclude: + labels: + - chore + - dependencies + - skip-changelog + categories: + - title: 🎉 New Features + labels: + - enhancement + - title: 🐛 Bug Fixes + labels: + - bug + - title: 📝 Documentation + labels: + - documentation + - title: Other Changes + labels: + - "*" diff --git a/.github/workflows/fill-gh-draft-release.yml b/.github/workflows/fill-gh-draft-release.yml deleted file mode 100644 index ac3169d..0000000 --- a/.github/workflows/fill-gh-draft-release.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Fill GitHub Draft Release - -on: - push: - branches: - - main - -permissions: - # To create or update releases - # https://docs.github.com/en/rest/reference/permissions-required-for-github-apps#permission-on-contents - contents: write - -jobs: - update_release_draft: - runs-on: ubuntu-latest - steps: - # Drafts your next Release notes as Pull Requests are merged into "master" - - uses: release-drafter/release-drafter@v5 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}