From f033cb9cb63d1be73e8b79f9ca1e0d1d7644404b Mon Sep 17 00:00:00 2001 From: Github Action Date: Sun, 1 Nov 2020 19:20:46 +0000 Subject: [PATCH] File sync from s4u/.github --- .github/release-drafter.yml | 30 +++++++++++++++++++++++++++ .github/workflows/release-drafter.yml | 15 ++++++++++++++ 2 files changed, 45 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 00000000..5dabe52a --- /dev/null +++ b/.github/release-drafter.yml @@ -0,0 +1,30 @@ +categories: + + - title: 'New features' + labels: + - 'enhancement' + + - title: 'Bug Fixes' + labels: + - 'bug' + + - title: 'Maintenance' + label: + - 'code quality' + - 'documentation' + + - title: 'Dependency updates' + label: + - 'dependencies' + +change-template: '- $TITLE #$NUMBER' + +sort-direction: 'ascending' + +template: | + # What's Changed + + $CHANGES + + # Thanks + Many thanks for collaboration on this release for: $CONTRIBUTORS diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml new file mode 100644 index 00000000..461eeb69 --- /dev/null +++ b/.github/workflows/release-drafter.yml @@ -0,0 +1,15 @@ +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: + - uses: release-drafter/release-drafter@v5.12.1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}