Just had a really cool use case for the advanced t...
# general
h
Just had a really cool use case for the advanced target selection and wanted to share in case it's helpful for others. We wanted to know if changes someone introduced into our monorepo affected code our deployed services depended on so we could coordinate with them about merging it into official releases. We already had our containerized services tagged, so the query ended up looking like
Copy code
./pants --changed-since=master --changed-dependees=transitive --filter-tag-regex=<our tag here> list
As has been the case for a while, awesome features from the Pants team continue to make our lives easier!
👍 1
🙌 1
🎉 1
The example of course assumes your upstream of interest in master, but the --changed-since docs give great examples of how to adapt this.
h
Glad to hear this feature has been effective for you!