Removing release-drafter github action (#6248)
This commit is contained in:
parent
8dd41ab947
commit
c50a46c69a
31
.github/release-drafter-template.yml
vendored
31
.github/release-drafter-template.yml
vendored
|
|
@ -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
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
name: Mastermind Labeler Workflow
|
||||||
|
|
||||||
on:
|
on:
|
||||||
issues:
|
issues:
|
||||||
types: [labeled, unlabeled]
|
types: [labeled, unlabeled]
|
||||||
23
.github/workflows/release-drafter.yml
vendored
23
.github/workflows/release-drafter.yml
vendored
|
|
@ -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 }}
|
|
||||||
Loading…
Reference in New Issue
Block a user