diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml deleted file mode 100644 index 7eca9e78..00000000 --- a/.github/release-drafter.yml +++ /dev/null @@ -1,71 +0,0 @@ -name-template: 'v$RESOLVED_VERSION 🌈' -tag-template: 'v$RESOLVED_VERSION' -categories: - - title: '🚀 Features' - labels: - - 'feature' - - title: '🐛 Bug Fixes' - labels: - - 'bug' - - title: '🧰 Maintenance' - label: 'chore' - - title: '📚 Documentation' - label: 'documentation' -change-template: '- $TITLE @$AUTHOR (#$NUMBER)' -change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. -version-resolver: - major: - labels: - - 'major' - minor: - labels: - - 'minor' - - 'feature' - patch: - labels: - - 'patch' - - 'fix' - - 'chore' - - 'documentation' - default: patch -template: | - ## Changes - - $CHANGES -autolabeler: - - label: 'chore' - files: - - '*.md' - branch: - - '/chore\b/' - title: - - '/\bchore\b/i' - body: - - '/^- \[x\] Maintenance/m' - - label: 'documentation' - files: - - '*.md' - branch: - - '/docs?\b/' - title: - - '/\bdocs\b/i' - body: - - '/^- \[x\] Documentation/m' - - label: 'bug' - branch: - - '/fix\b/' - - '/bug\b/' - title: - - '/\bfix\b/i' - - '/\bbug\b/i' - body: - - '/^- \[x\] Bug fixes/m' - - label: 'feature' - branch: - - '/feature\b/' - - '/feat\b.+/' - title: - - '/\bfeature\b/' - - '/\bfeat\b/' - body: - - '/^- \[x\] Features/m' diff --git a/.github/workflows/release-drafter-main.yml b/.github/workflows/release-drafter-main.yml deleted file mode 100644 index bbcd57bd..00000000 --- a/.github/workflows/release-drafter-main.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: Release Drafter - -on: - push: - branches: - - main - -jobs: - update_release_draft: - runs-on: ubuntu-latest - steps: - - uses: release-drafter/release-drafter@v5 - env: - GITHUB_TOKEN: ${{ secrets.PAT }} diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml deleted file mode 100644 index 3d71a5e4..00000000 --- a/.github/workflows/release-drafter.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Release Drafter - -on: - pull_request: - types: [opened, reopened, synchronize] - -jobs: - update_release_draft: - runs-on: ubuntu-latest - steps: - - uses: release-drafter/release-drafter@v5 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}