diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml deleted file mode 100644 index 3d8022807..000000000 --- a/.github/release-drafter.yml +++ /dev/null @@ -1,46 +0,0 @@ -categories: - - title: 'Features' - label: 'feat' - - title: 'Fixes' - label: 'fix' - - title: 'Documentation' - label: 'docs' - - title: 'Maintenance' - labels: - - 'chore' - - 'ci' - - 'cleanup' - - 'perf' - - 'refactor' - - 'style' - - 'test' - -autolabeler: - - label: 'feat' - title: '/^feat:/' - - label: 'fix' - title: '/^fix:/' - - label: 'docs' - title: '/^docs:/' - - - label: 'chore' - title: '/^chore:/' - - label: 'ci' - title: '/^ci:/' - - label: 'cleanup' - title: '/^cleanup:/' - - label: 'perf' - title: '/^perf:/' - - label: 'refactor' - title: '/^refactor:/' - - label: 'style' - title: '/^style:/' - - label: 'test' - title: '/^test:/' - -template: | - ## Contributors - $CONTRIBUTORS - ## What's Changed - $CHANGES - diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 000000000..dc9270980 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,21 @@ +changelog: + categories: + - title: '🚀 Features' + labels: + - 'feat' + - title: '🔧 Fixes' + labels: + - 'fix' + - title: '📄 Documentation' + labels: + - 'docs' + - title: '⚙️ Maintenance' + labels: + - 'chore' + - 'ci' + - 'perf' + - 'test' + - 'build' + - title: 'Others' + labels: + - "*" diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml deleted file mode 100644 index 3d3c7b229..000000000 --- a/.github/workflows/release-drafter.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Release Drafter - -on: - push: - # branches to consider in the event; optional, defaults to all - branches: - - main - # pull_request event is required only for autolabeler - pull_request: - # Only following types are handled by the action, but one can default to all as well - types: - - opened - - reopened - - synchronize - -jobs: - update_release_draft: - runs-on: ubuntu-latest - permissions: - contents: write - steps: - # Drafts your next Release notes as Pull Requests are merged into "main" - - uses: release-drafter/release-drafter@v5 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}