From 3785441ccc4886bea2badeee997de95dd351eeee Mon Sep 17 00:00:00 2001 From: Juan Calderon-Perez <835733+gaby@users.noreply.github.com> Date: Thu, 13 Nov 2025 09:21:10 -0500 Subject: [PATCH 1/2] Fix autolabeler for release-drafter --- .github/release-drafter.yml | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 5d162872dec..1292b0fdb67 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -39,7 +39,6 @@ version-resolver: minor: labels: - 'โœ๏ธ Feature' - - '๐Ÿ“ Proposal' patch: labels: - '๐Ÿ“’ Documentation' @@ -49,31 +48,35 @@ version-resolver: - 'โšก๏ธ Performance' default: patch template: | + ## v$RESOLVED_VERSION + + ## What's Changed + $CHANGES + **๐Ÿ“’ Documentation**: https://docs.gofiber.io/next/ + + **๐Ÿ’ฌ Discord**: https://gofiber.io/discord + **Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION Thank you $CONTRIBUTORS for making this release possible. autolabeler: - label: '๐Ÿ“’ Documentation' - matcher: - title: '/(docs|doc:|\[doc\]|README|typos|comment|documentation)/i' + title: '/(docs|doc:|\[doc\]|README|typos|comment|documentation)/i' - label: 'โ˜ข๏ธ Bug' - matcher: - title: '/(fix|race|bug|missing|correct)/i' + title: '/(fix|bug)/i' - label: '๐Ÿงน Updates' - matcher: - title: '/(improve|improvements|update|refactor|deprecated|remove|unused|test)/i' + title: '/(improve|chore|improvements|missing|update|refactor|deprecated|remove|unused|test)/i' - label: '๐Ÿค– Dependencies' - matcher: - title: '/(bump|dependencies)/i' + files: + - 'go.mod' + - 'go.sum' + - '**/go.mod' + - '**/go.sum' - label: 'โœ๏ธ Feature' - matcher: - title: '/(feature|feat|create|implement|add)/i' -- label: '๐Ÿ“ Proposal' - matcher: - title: '/(proposal|idea|request|suggest)/i' + title: '/(feature|feat|create|implement|add|support)/i' - label: 'v3' branch: - '/main/' From 69a6379c469e8196a67710166bc3654820632abe Mon Sep 17 00:00:00 2001 From: Juan Calderon-Perez <835733+gaby@users.noreply.github.com> Date: Thu, 13 Nov 2025 09:22:50 -0500 Subject: [PATCH 2/2] Simplify release drafter template Removed version header and 'What's Changed' section from release drafter template. --- .github/release-drafter.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 1292b0fdb67..d5a333ea525 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -48,10 +48,6 @@ version-resolver: - 'โšก๏ธ Performance' default: patch template: | - ## v$RESOLVED_VERSION - - ## What's Changed - $CHANGES **๐Ÿ“’ Documentation**: https://docs.gofiber.io/next/