Skip to content

Commit

Permalink
add draft release workflows (#23)
Browse files Browse the repository at this point in the history
Signed-off-by: Emily Rodriguez <[email protected]>
Co-authored-by: Emily Rodriguez <[email protected]>
  • Loading branch information
em-c-rod and Emily Rodriguez authored Mar 31, 2023
1 parent 764f581 commit 868f1fc
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name-template: "$NEXT_PATCH_VERSION"
tag-template: "$NEXT_PATCH_VERSION"
categories:
- title: "New Features"
labels:
- "feature"
- "enhancement"
- title: "Bug Fixes"
labels:
- "fix"
- "bugfix"
- "bug"
- title: "Security Enhancements"
labels:
- "security"
- title: "Dependency Updates"
labels:
- "dependencies"
change-template: "- $TITLE @$AUTHOR (#$NUMBER)"
template: |
$CHANGES
16 changes: 16 additions & 0 deletions .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Draft Release

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

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 868f1fc

Please sign in to comment.