Hello
For example, I have an issues with Blocked label, how can I write automation rule to send me notification in Slack which says that this issue is Unblocked when I remove this label in jira?
Thanks
Hi @Елена Елена
You can create a rule on Field value changed with change type "Value deleted".
Then you can fetch issue's labels using the following SmartValue.
{{#issue.labels}}"{{.}}", {{/}}
You can search in this if the blocked label is there or not and then take some action on that.
I hope it helps.
Ravi
Or you can use an if condition.
Labels "contains none of" blocked
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It works but I got message when I removed any label, I want to get the message when I remove only Blocked label
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Елена Елена
Perhaps if you post images of your entire automation rule and the audit log details showing the rule execution, that will provide context for the community to help.
And if you are new to automation, please review this documentation and examples:
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, Bill
I tried 2 options
Option 1 - It doesn't work
Option 2 - I receive notifications from when I add or remove labels for issues which don't have Blocked label
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For your scenario, fieldChange is not detecting the label change. Instead please try explicitly checking the field with {{changelog.labels}} such as with this:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For me this process did not worked. Changed flow (step 3) works (I´ve tested for "Suspect" label):
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.