Skip to content

Commit

Permalink
Add release management github action
Browse files Browse the repository at this point in the history
Signed-off-by: Angelica Ochoa <[email protected]>
  • Loading branch information
ao508 committed Nov 11, 2021
1 parent aa75b30 commit 3c8a345
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name-template: '$NEXT_PATCH_VERSION.RELEASE'
tag-template: '- $TITLE @$AUTHOR (#$NUMBER)'
categories:
- title: 🚀 Features
label: feature
- title: 🐛 Bug Fixes
label: fix
- title: 🧰 Maintenance
label: chore
template: |
## Changes
$CHANGES
## 🕵️ Full commit logs
https://github.com/mskcc/cmo-metadb-label-generator/compare/$PREVIOUS_TAG...$NEXT_PATCH_VERSION
16 changes: 16 additions & 0 deletions .github/workflows/release-management.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Release Management

on:
push:
# branches to consider in the event; optional, defaults to all
branches:
- master

jobs:
update_draft_release:
runs-on: ubuntu-latest
steps:
# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: toolmantim/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3c8a345

Please sign in to comment.