OwlBot: PR title should contain highest level of conventional commit detected #3660
Labels
priority: p3
Desirable enhancement or fix. May not be included in next release.
type: feature request
‘Nice-to-have’ improvement, new feature or different behavior or design.
The Problem
When an OwlBot PR contains multiple commits, the PR title (and therefore the conventional commit type) is simply the first CL in the list. For example, in this Compute PR, you'll see the PR title uses
fix:
, even though further down the commit list, there are severalfeat:
CLs merged:As a result, the next version of our
google/cloud-compute
library which got released was only incremented a patch release (1.0.2
) instead of a feature release (1.1.0
) like we want and expect.The Solution
Change the PR title to properly represent the highest level of conventional commit detected. In this case, it would be a
feat
instead of afix
. This would ensure that when the PRs are merged, a proper version is tagged with the next release.The text was updated successfully, but these errors were encountered: