-
-
Notifications
You must be signed in to change notification settings - Fork 2k
🧹 chore: Fix autolabeler for release-drafter #3865
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -39,7 +39,6 @@ version-resolver: | |
| minor: | ||
| labels: | ||
| - '✏️ Feature' | ||
| - '📝 Proposal' | ||
| patch: | ||
| labels: | ||
| - '📒 Documentation' | ||
|
|
@@ -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: | ||
|
gaby marked this conversation as resolved.
|
||
| - 'go.mod' | ||
| - 'go.sum' | ||
|
gaby marked this conversation as resolved.
|
||
| - '**/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/' | ||
|
|
||
There was a problem hiding this comment.
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.