From c467647e49e04c56d10c9ddf44d6641d65f6cfd6 Mon Sep 17 00:00:00 2001 From: David Barri Date: Mon, 18 Oct 2021 08:42:20 +1100 Subject: [PATCH] Remove release notes drafter Closes #600 --- .github/release-drafter.yml | 16 ---------------- .github/workflows/release-drafter.yml | 17 ----------------- 2 files changed, 33 deletions(-) delete mode 100644 .github/release-drafter.yml delete mode 100644 .github/workflows/release-drafter.yml diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml deleted file mode 100644 index 7d7908896..000000000 --- a/.github/release-drafter.yml +++ /dev/null @@ -1,16 +0,0 @@ -name-template: 'v$NEXT_PATCH_VERSION' -tag-template: 'v$NEXT_PATCH_VERSION' -template: | - # What's Changed - $CHANGES -categories: - - title: 'New' - label: 'type: feature' - - title: 'Bug Fixes' - label: 'type: bug' - - title: 'Maintenance' - label: 'type: maintenance' - - title: 'Documentation' - label: 'type: docs' - - title: 'Dependency Updates' - label: 'type: dependencies' diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml deleted file mode 100644 index 1a9421e63..000000000 --- a/.github/workflows/release-drafter.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Release Drafter - -on: - push: - # branches to consider in the event; optional, defaults to all - branches: - - master - - series/1.x - -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 }}