-
Notifications
You must be signed in to change notification settings - Fork 0
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
refactor: beautified the changelog being generated #3
Conversation
Added separate labels for version resolving and changelog generation. This allows us to categorize changelogs.
title: | ||
- "/^deprecate/i" | ||
- label: "major" | ||
- "/^Bump/" # Dependency update PR by depandabot |
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.
Dependabot will prepend commit messages with chore(deps):
if it looks like there are any recent semantic commits, will it not?
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.
We can configure a prefix if we want
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.
This doesn't look at commit message, but rather PR title, we can also search on PR body, branch name and files (glob only for file)
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.
Can you update so that commits with a scope will be recognized as well?
like type(scope): description
and not just type: description
Loving these changes btw.
Added support to scoped PR titles. Eg: feat(scope): This is the description of the PR
@misund Changes has been made to accommodate scoped PR titles. Can you review? Thanks. |
Decided to not have it in central repo, as it was getting difficult to make sure reusable-repos had proper access right to |
Added separate labels for version resolving and changelog generation.
This allows us to categorize changelogs.
Required by: coopnorge/engineering-github-actions#52