Removing release-drafter github action (#6248)

This commit is contained in:
Arpit Mohan 2021-07-29 18:24:03 +05:30 committed by GitHub
parent 8dd41ab947
commit c50a46c69a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 54 deletions

View File

@ -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

View File

@ -1,3 +1,5 @@
name: Mastermind Labeler Workflow
on:
issues:
types: [labeled, unlabeled]

View File

@ -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 }}