Skip to content

Commit

Permalink
Merge pull request #78 from WordPress/release_drafter
Browse files Browse the repository at this point in the history
  • Loading branch information
zackkrida authored May 26, 2021
2 parents 5cc6a98 + 0169b7f commit 548859c
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Configuration for the release-drafter action
# See docs here: https://github.com/marketplace/actions/release-drafter
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
categories:
- title: 'New Features'
label: '🌟 goal: addition'
- title: 'Improvements'
label: '✨ goal: improvement'
- title: 'Internal Improvements'
label: '🤖 aspect: dx'
- title: 'Bug Fixes'
label: '🛠 goal: fix'
change-template: '- $TITLE: #$NUMBER by @$AUTHOR'
version-resolver:
major:
labels:
- 'major'
minor:
labels:
- 'minor'
patch:
labels:
- 'patch'
default: patch
template: |
$CHANGES
## Credits
Special thanks to $CONTRIBUTORS for their contributions!
## See an issue?
Does anything look wrong in this release? Please [report a bug](https://github.com/WordPress/openverse-api/issues/new?labels=bug%2C+awaiting+triage&template=bug_report.md).
16 changes: 16 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Release Drafter

on:
push:
branches:
- develop

jobs:
update_release_draft:
name: Update draft release
runs-on: ubuntu-latest
steps:
- name: Update draft release
uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 548859c

Please sign in to comment.