From c03fcf5d0311f1eeeb9cd51eceb5869a9981811b Mon Sep 17 00:00:00 2001 From: Josh Johnson Date: Wed, 30 Oct 2019 13:19:34 +0000 Subject: [PATCH] Store config in file (#722) --- .github/release-drafter.yml | 21 +++++++++++++++++++++ .github/workflows/release-management.yml | 21 --------------------- 2 files changed, 21 insertions(+), 21 deletions(-) create mode 100644 .github/release-drafter.yml diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml new file mode 100644 index 0000000..eb276f2 --- /dev/null +++ b/.github/release-drafter.yml @@ -0,0 +1,21 @@ +name-template: 'v$NEXT_PATCH_VERSION 🌈' +tag-template: 'v$NEXT_PATCH_VERSION' +categories: + - title: '🚨 Breaking changes' + labels: + - 'breaking change' + - title: '🚀 Features' + labels: + - 'feature' + - 'enhancement' + - title: '🐛 Bug Fixes' + labels: + - 'bugfix' + - title: '🔧 Maintenance' + labels: + - 'chore' + - 'housekeeping' + - 'refactor' +change-template: '- $TITLE @$AUTHOR (#$NUMBER)' +template: | + $CHANGES diff --git a/.github/workflows/release-management.yml b/.github/workflows/release-management.yml index d90ff6a..cba3b53 100644 --- a/.github/workflows/release-management.yml +++ b/.github/workflows/release-management.yml @@ -13,24 +13,3 @@ jobs: - uses: toolmantim/release-drafter@v5.2.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name-template: 'v$NEXT_PATCH_VERSION 🌈' - tag-template: 'v$NEXT_PATCH_VERSION' - categories: - - title: '🚨 Breaking changes' - labels: - - 'breaking change' - - title: '🚀 Features' - labels: - - 'feature' - - 'enhancement' - - title: '🐛 Bug Fixes' - labels: - - 'bugfix' - - title: '🔧 Maintenance' - labels: - - 'chore' - - 'housekeeping' - - 'refactor' - change-template: '- $TITLE @$AUTHOR (#$NUMBER)' - template: | - $CHANGES