From c50a46c69a5a989e87eef194a6a0cd8a556b4041 Mon Sep 17 00:00:00 2001 From: Arpit Mohan Date: Thu, 29 Jul 2021 18:24:03 +0530 Subject: [PATCH] Removing release-drafter github action (#6248) --- .github/release-drafter-template.yml | 31 ------------------- .../{main.yml => mastermind-labeler.yml} | 2 ++ .github/workflows/release-drafter.yml | 23 -------------- 3 files changed, 2 insertions(+), 54 deletions(-) delete mode 100644 .github/release-drafter-template.yml rename .github/workflows/{main.yml => mastermind-labeler.yml} (87%) delete mode 100644 .github/workflows/release-drafter.yml diff --git a/.github/release-drafter-template.yml b/.github/release-drafter-template.yml deleted file mode 100644 index e087624d0a..0000000000 --- a/.github/release-drafter-template.yml +++ /dev/null @@ -1,31 +0,0 @@ -name-template: 'Release v$RESOLVED_VERSION 🌈' -tag-template: 'v$RESOLVED_VERSION' -categories: - - title: '🚀 Features' - labels: - - 'Enhancement' - - title: '🐛 Bug Fixes' - labels: - - 'Bug' - - title: '📙 Documentation' - label: 'Documentation' -# Any PR with the label 'skip-changelog' will not be inserted into the release notes -exclude-labels: - - 'skip-changelog' -change-template: '- $TITLE (#$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' - patch: - labels: - - 'Patch' - default: patch -template: | - ## What's new? - - $CHANGES diff --git a/.github/workflows/main.yml b/.github/workflows/mastermind-labeler.yml similarity index 87% rename from .github/workflows/main.yml rename to .github/workflows/mastermind-labeler.yml index 6f61c5667b..eec9398813 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/mastermind-labeler.yml @@ -1,3 +1,5 @@ +name: Mastermind Labeler Workflow + on: issues: types: [labeled, unlabeled] diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml deleted file mode 100644 index a2b2d256e1..0000000000 --- a/.github/workflows/release-drafter.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Release Drafter - -on: - push: - branches: - - release - # Only trigger if files have changed in this specific path - paths: - - 'app/client/**' - - 'app/server/**' - - -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 - with: - # (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml - config-name: release-drafter-template.yml - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file