From 5886ba364d6e43f1249296a5708e1cc88d76ccf9 Mon Sep 17 00:00:00 2001 From: Pranav Singh Date: Fri, 5 Jan 2024 11:49:45 +0530 Subject: [PATCH 1/2] add release drafter Signed-off-by: Pranav Singh --- .github/release-drafter.yml | 25 +++++++++++++++++++++++++ .github/workflows/release-drafter.yml | 18 ++++++++++++++++++ 2 files changed, 43 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..7342fcb --- /dev/null +++ b/.github/release-drafter.yml @@ -0,0 +1,25 @@ +name-template: 'v$NEXT_PATCH_VERSION' +tag-template: 'v$NEXT_PATCH_VERSION' +categories: + - title: '🚀 Features' + labels: + - 'kind/feature' + - 'kind/enhancement' + - title: '🐛 Bug Fixes' + labels: + - 'fix' + - 'bugfix' + - 'kind/bug' + - title: '🧰 Maintenance' + labels: + - 'kind/chore' + - 'chore' +change-template: '- $TITLE @$AUTHOR (#$NUMBER)' +template: | + ## What's New + $CHANGES + + ## Contributors + + Thank you to our contributors for making this release possible: + $CONTRIBUTORS \ 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..a88e6d1 --- /dev/null +++ b/.github/workflows/release-drafter.yml @@ -0,0 +1,18 @@ +name: Release Drafter + +on: + push: + # our release branch + 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: + config-name: release-drafter.yml + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file From 30f61bc92226b2a53e69e1f1b5e340ed039019ae Mon Sep 17 00:00:00 2001 From: Pranav Singh Date: Fri, 5 Jan 2024 11:52:40 +0530 Subject: [PATCH 2/2] update Signed-off-by: Pranav Singh --- .github/release-drafter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 7342fcb..035bebd 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,4 +1,4 @@ -name-template: 'v$NEXT_PATCH_VERSION' +name-template: 'MeshMap SnapShot v$NEXT_PATCH_VERSION' tag-template: 'v$NEXT_PATCH_VERSION' categories: - title: '🚀 Features'