From b93e4eba9b523f7463a60665120d6a078b2f3c9b Mon Sep 17 00:00:00 2001 From: Andrew Azores Date: Mon, 11 Dec 2023 10:21:36 -0500 Subject: [PATCH] fixup! ci(release-notes): replace release-drafter with release labels config (#1177) --- .github/workflows/release-drafter.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/release-drafter.yml diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml deleted file mode 100644 index 5abf1524f..000000000 --- a/.github/workflows/release-drafter.yml +++ /dev/null @@ -1,23 +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 - 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 }}