fix: configure autolabeler and improve release-drafter workflow#110
Merged
Conversation
…eler - Remove pull_request trigger that causes webhook warnings - Disable autolabeler which was causing the warnings - Keep core functionality: draft release creation on push to main - Cleaner, simpler workflow without unnecessary features
- Add 'default: patch' to version-resolver - Ensures PRs without specific labels still bump patch version - Prevents version resolution from failing
- Remove ^ anchor which may not work in Release Drafter context - Change (.+) to ([^)]*) for more specific scope matching - Prevents greedy matching issues in optional scope group - Patterns now reliably match: type: or type(scope):
j-d-ha
force-pushed
the
fix/update-release-drafter
branch
from
November 9, 2025 19:55
e934a23 to
542db91
Compare
|
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## main #110 +/- ##
=======================================
Coverage 50.12% 50.12%
=======================================
Files 52 52
Lines 1640 1640
Branches 204 204
=======================================
Hits 822 822
Misses 765 765
Partials 53 53 Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Summary
Fix Release Drafter autolabeler configuration and improve workflow to properly label PRs and generate changelogs.
Changes
Autolabeler Configuration
autolabelersection to.github/release-drafter.ymlfeat:,fix:,docs:,refactor:,test:,chore:,ci:BREAKING CHANGE:in PR body for breaking-change label/type(\([^)]*\))?:/iVersion Resolution
default: patchto version-resolverWorkflow Configuration
pull_requesttrigger for autolabeler to work on new PRsopened,reopened,synchronizecontents: write,pull-requests: writedisable-autolabeler: false)How It Works Now
Testing
After merge, the autolabeler will work on all new PRs. Existing merged PRs without labels will not appear in the changelog unless manually labeled.
Next Steps
After merge:
bump-versionworkflow to create initial git tagChecklist