Skip to content

Commit

Permalink
Merge pull request #29 from testcontainers/add-release-drafter
Browse files Browse the repository at this point in the history
Add release drafter
  • Loading branch information
rnorth authored Aug 2, 2021
2 parents 7d9a387 + 10f2fdc commit 17aa71c
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name-template: $NEXT_PATCH_VERSION
tag-template: $NEXT_PATCH_VERSION
template: |
# What's Changed
$CHANGES
categories:
- title: ⚠️ Breaking API changes
label: type/breaking-api-change
- title: 🚀 Features & Enhancements
labels:
- type/feature
- type/enhancement
- title: ☠️ Deprecations
label: type/deprecation
- title: 🐛 Bug Fixes
label: type/bug
- title: 📖 Documentation
label: type/docs
- title: 🧹 Housekeeping
labels:
- type/housekeeping
- type/test-improvement
- title: 📦 Dependency updates
label: dependencies
17 changes: 17 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Release Drafter

on:
push:
branches:
- master
pull_request:
types: [opened, reopened, synchronize]

jobs:
update_release_draft:
if: github.repository == 'testcontainers/moby-ryuk'
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@fe52e97d262833ae07d05efaf1a239df3f1b5cd4 # v5.15.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 17aa71c

Please sign in to comment.