From c2b5b107ae935b9e48802ab093e29a4a34756e06 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Thu, 14 Jan 2021 14:39:38 +0100 Subject: [PATCH] setup release-drafter See https://github.com/release-drafter/release-drafter --- .github/release-drafter.yml | 16 ++++++++++++++++ .github/workflows/release-drafter.yml | 19 +++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 .github/release-drafter.yml create mode 100644 .github/workflows/release-drafter.yml diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml new file mode 100644 index 0000000..ef760d5 --- /dev/null +++ b/.github/release-drafter.yml @@ -0,0 +1,16 @@ +template: | + ## Whatโ€™s Changed + + $CHANGES + +categories: + - title: '๐Ÿš€ Features' + label: 'feature' + - title: '๐Ÿ› Bug Fixes' + labels: + - 'fix' + - 'bugfix' + - 'bug' + +exclude-labels: + - 'skip-changelog' \ No newline at end of file diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml new file mode 100644 index 0000000..ce1346a --- /dev/null +++ b/.github/workflows/release-drafter.yml @@ -0,0 +1,19 @@ +name: Release Drafter + +on: + push: + # branches to consider in the event; optional, defaults to all + branches: + - master + +jobs: + update_release_draft: + runs-on: ubuntu-latest + steps: + # Drafts your next Release notes as Pull Requests are merged into "master" + - uses: release-drafter/release-drafter@v5 + with: + # (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml + # config-name: my-config.yml + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file