Skip to content

Commit 9a4f174

Browse files
author
Gerry Manoim
committed
BLD: Add release drafter flow
1 parent 2246a5e commit 9a4f174

2 files changed

Lines changed: 22 additions & 0 deletions

File tree

.github/release-drafter.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
name-template: '$NEXT_PATCH_VERSION 🌈'
3+
tag-template: '$NEXT_PATCH_VERSION'
4+
template: |
5+
## What’s Changed
6+
$CHANGES

.github/workflows/master-merge.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: On Master Merge
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
draft-release-publish:
10+
name: Draft a new release
11+
runs-on: ubuntu-latest
12+
steps:
13+
# Drafts your next Release notes as Pull Requests are merged into "master"
14+
- uses: release-drafter/release-drafter@v5
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)