Is anyone utilizing pants for release note generat...
# general
c
Is anyone utilizing pants for release note generation? The github built in tools don't really seem suited for a monorepo since it will get the commit history for the entire repo, not an individual service
b
Are you thinking of using Pants to filter the relevant changes that affect an individual service?
c
Exactly what I’m after. We currently do something like:
git log <previous_release>..HEAD --oneline --pretty=format:"* %s" -- <path to individual service>
and some regex on the output to create links to the various github PRs and Jira tickets.
but that doesn't cover things we import from other shared code
So something like
pants --changed-since=HEAD release_notes app/<service>::
c
I had a similar request I've been kicking around. I wrote it down at https://github.com/pantsbuild/pants/issues/21393 please feel free to add anything I'm missing for your use case.
👀 1