I've setup a Zapier integration so that any new alerts in PagerDuty will create a new issue in JIRA for our Ops team to see.
Is there any way to automatically add a Label to these newly created JIRA issues? So the workflow might look like:
PagerDuty alert > new JIRA issue created > the "PD-Alert" Label is automatically added to the JIRA issue
Is this possible at all?
Solved this without expensive plugins for Jira enterprise V7.4.2:
1 Edit the workflow->"create transition" to add a post function to the create step.
2 (for some reason you cant edit label as a field directly) so add your label-name to a tmp custom field that is a text string.
3 add another post function that copied this field to the labels field
4 clear the tmp custom field value.
This is an excellent answer! Though, can you think of a way to filter this on an issue created by email? Meaning, if you only want to auto-label issues created by email...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you please let us know the steps creating label-name to tmp custom field in Jira workflow post functions.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
He just did. I read the post, and created exactly what Ole outlined in less than 5 minutes.
Now, having to do these steps without an ability to directly append a label is undelightful.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What if I have more than two fields that I need to add it in a label.
In that case that post function I.e copying a field to label might not work.
Can you kindly help me in suggestions alternative for this. This will solve a major problem of mine.
I have 3-5 fields which I need to add as a label. After a customer creates a ticket.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
use Zapier (or azure function or some other ITTTF tool). It has a lot of runway for free and it's soooooooooooo much easier to deal with that inadequacies of Jira UI.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Use Jira Automation plugin, the Lite (free) version should work.
Pros:
Cons:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks! This works :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This addon allows only 3 rules per project.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This addon allows only 3 rules per project.
Didn't know that, or is it only for Lite version?
I tried on eval and managed to add 4 rules to the same project. Maybe a workaround is to set projects as Global and then specify the project restriction in the Rule's Condition.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What JQL did you use? I tried "Linked_Intercom_Conversation IS Not "Blank"" and got an error message.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As an added option, you could add a second automation to remove the label upon Status change or another trigger. For instance, if the label was used to identify new issues easily, the label could be automatically removed when assigned or when the status changes.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
*This is a fix for Jira Service Desk*
I was able to solve this with a simple non workflow related workaround
Project Settings -> Request types- >Edit the request you want to add labels to -> Add a "Hidden" labels field with the label you need in "Preset value". This will ensure that when the issue is created, the label automatically gets added to a issue of that type.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
After request types i did not get what exactly is edit request as currently i have two options one is edit field and edit group. Can you kindly help m here
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I just set this up on our site with "Project automation" (which I think is now just built into Jira?)
For us I wanted a way to add "to-groom" to all new cases. I ended up with
When: Issue created
If: Issue matches JQL "(labels is EMPTY OR (labels != "to-groom" AND labels != "groomed")) AND status != Resolved AND status != Closed"
Then: Edit issue fields: Labels SET "to-groom"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
With Scriptrunner, you can add this custom script post-function on the transition Create:
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.label.LabelManager
def user = ComponentAccessor.jiraAuthenticationContext?.getLoggedInUser()
def labelManager = ComponentAccessor.getComponent(LabelManager)
labelManager.addLabel(user,issue.id, "Your label here", false)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Rodrigo Sogari [Atlassian] HI
How to add 'Labels' automatically on Transition/State change ( i.e changing the bug status (Ex) to 'Open' to 'close' state.Does JIRA support for this.
Please Comment.
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Rodrigo Sogari [Atlassian] Thanks for the very quick reply – much appreciated.
Script Runner looks promising but it does not run on Cloud instances. Bummer. Do you have any other suggestions?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
ScriptRunner is available on Cloud these days!
Marketplace Link Here
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Johnson,
JIRA does not have a built-in feature for that, but I believe you should be able to achieve this with a custom script using the Script Runner plugin.
I've found a script to add labels automatically. Maybe you can customize that script.
https://answers.atlassian.com/questions/56290/auto-assign-labels-based-on-the-user-group
Hope this helps
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So - 5 years later. Lets bump this.
The question is "why not?". We shouldn't need script runner or direct sql quries which are not even available in the cloud version.
As it stands now, the workflow is to set a label on another field, then copy it to the field i want. It's not very delightful, and it wipes out all of the labels in the process.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Supporting AlexV in this!
About to embark on the cloud-version of this adventure after migrating our stuff to cloud and having to recreate this. Fully expecting it to be at least as "undelightful" still
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.
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.