You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
As far as I can see a validator for a workflow transition always executes regardless of the issue type. Is it possible to execute a validation only for specific issue types?
If you associate different workflows with different issue types, then you can have different validators for them.
A validator always checks on a transition though, so if you want one workflow that behaves differently according to issue type, you'll need code, as you'll want to include "check issue type" as part of the validator.
Different workflows creates a lot of maintenance. We already have several projects based on SCRUM in which we try to keep the workflow as general as possible.
If we "code" a custom validator, can we use that in the Cloud version? Do you have any references for a documentation on how to do this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Coding is heavily limited in Cloud - there's no add-ons that I know of that can do conditions coding really.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
AFAIK, you need "Script Validator --> Simple Script Validator"
if(issue.issueType.name == 'Bug' || issue.issueType.name == 'Enhancement'){
....
....
(Your code)
}
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I ask because there's several. Also, ScriptRunner is not (yet) for Cloud, as tagged in the question. Although I should have said that earlier.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We run JIRA in the cloud. ScriptRunner is not available. Any other add-ons which can do this in the cloud?
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.
Not only Cloud, Script Runner has a potential risk about security. Admin guys can use this plugin to fake user, no log to trace back. That's why I have to uninstall it on my JIRA server.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Most recent answers can be found in this post:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.