Skip to content

Commit d5a3d0f

Browse files
authored
Add release management github action (#41)
Signed-off-by: Angelica Ochoa <15623749+ao508@users.noreply.github.com>
1 parent 6d6c9f0 commit d5a3d0f

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.github/release-drafter.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name-template: '$NEXT_PATCH_VERSION.RELEASE'
2+
tag-template: '- $TITLE @$AUTHOR (#$NUMBER)'
3+
categories:
4+
- title: 🚀 Features
5+
label: feature
6+
- title: 🐛 Bug Fixes
7+
label: fix
8+
- title: 🧰 Maintenance
9+
label: chore
10+
template: |
11+
## Changes
12+
13+
$CHANGES
14+
15+
## 🕵️ Full commit logs
16+
17+
https://github.com/mskcc/cmo-metadb-sample-publisher/compare/$PREVIOUS_TAG...$NEXT_PATCH_VERSION
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Release Management
2+
3+
on:
4+
push:
5+
# branches to consider in the event; optional, defaults to all
6+
branches:
7+
- master
8+
9+
jobs:
10+
update_draft_release:
11+
runs-on: ubuntu-latest
12+
steps:
13+
# Drafts your next Release notes as Pull Requests are merged into "master"
14+
- uses: toolmantim/release-drafter@v5.2.0
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)