Question about tag workflows... We've recently mov...
# general
g
Question about tag workflows... We've recently moved some more infra to Pants, that we don't want to run on CI or by accident. We've used tags for this, so a target like
Copy code
oci_mirror_images(
    ...,
    tags=["mirror"],
)
And then in
pants.toml
we disable the tag by default:
Copy code
tag = ['-mirror', ...]
My expectation was to be able to say
pants --tag='+mirror' publish ...
, but that does not work. I can make it work with
--tag='["mirror"]
, but that replaces all tags, instead of enabling the one I want.
f
What about
--tag='+["mirror"]'
?
g
Nope, unfortunately not!
f
nice find!