Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 13 additions & 14 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ version-resolver:
minor:
labels:
- '✏️ Feature'
Copy link

Copilot AI Nov 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The '📝 Proposal' label is still referenced in the categories section (line 16) but has been removed from the version-resolver. This creates an inconsistency where PRs with this label will appear in the "🚀 New" category but won't affect version calculation.

Consider also removing '📝 Proposal' from line 16 in the categories section, or add it back to the version-resolver if proposal PRs should still bump the minor version.

Suggested change
- '✏️ Feature'
- '✏️ Feature'
- '📝 Proposal'

Copilot uses AI. Check for mistakes.
- '📝 Proposal'
patch:
labels:
- '📒 Documentation'
Expand All @@ -51,29 +50,29 @@ version-resolver:
template: |
$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:
Comment thread
gaby marked this conversation as resolved.
- 'go.mod'
- 'go.sum'
Comment thread
gaby marked this conversation as resolved.
Copy link

Copilot AI Nov 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The word "missing" has been moved from the '☢️ Bug' pattern to the '🧹 Updates' pattern. However, commits with "missing" in the title typically indicate bug fixes (e.g., "fix missing validation", "add missing error check"), not general updates or improvements.

Consider moving "missing" back to the '☢️ Bug' pattern on line 69 to ensure bug fixes are properly categorized.

Copilot uses AI. Check for mistakes.
- '**/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/'
Expand Down
Loading