I see. I've wrote a workflow rules to add tag when estimation changes. Have to update all created tags to be visible for all users, but it works.
rule EstimationTag
when Estimation.changed && issue.Type == {Feature} {
for each tag in issue.tags {
if (tag.name.endsWith("pt", opts)) {
removeTag(tag.name);
}
}
addTag(Estimation + "pt");
}
rule keepEstimationTag
when tags.changed {
if (tags.removed.isNotEmpty && tags.removed.first.name == Estimation + "pt") {
assert false: "You can not remove estimation tag";
}
}
unfortunately it's not possible. I think your request is partly relates to JT-5510
Regtards.
Alexander
rule EstimationTag when Estimation.changed && issue.Type == {Feature} { for each tag in issue.tags { if (tag.name.endsWith("pt", opts)) { removeTag(tag.name); } } addTag(Estimation + "pt"); } rule keepEstimationTag when tags.changed { if (tags.removed.isNotEmpty && tags.removed.first.name == Estimation + "pt") { assert false: "You can not remove estimation tag"; } }