I have two version naming conventions that include text one is (main) and other is (react)
I want to create an automation that assigns all issues with a certain status to a fix version when I create a new version.
I am struggling to be able to set up the below in the automation
When version is created
AND
version name contains (react)
any help??
Is this what you mean?
Please confirm so we can check that
Yes please
I know how to do step 2 and 3, its 1 i cant figure out.
This is the current workflow
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you click on more options in the version created trigger than you can set a regex for the name.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I did see this but genuinely have no idea how to format it in order to work the way I want
Could you help with that?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I need some example versions from you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is there no way to do it based on just containing some fixed text?
The version name is not important or in a defined format at point of creation, all that is required is (main) or (react) is in the name. When ready for release we then update the name to a version number but it still is suffixed with either (main) or (react)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am not into regex but maybe "*REACT*" does it
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.
Hi Aaron,
I am working on some automation using version created as a trigger, but I am getting invalid regular expression error.
I was trying to use the following to check not empty, it shows `invalid regular expression`. I tested `^\S+$` in https://regex101.com/. it is correct. But not sure using `.match()` function is right or not. Any ideas?
{{version.startDate.match("^\S+$")}}
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Within the Version name filer box, if you want to filter description contains "React" then you can use
(?i).*React.*
the (?i) means don't care what case it is using, e.g. ReacT or reAct etc.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Show up and give back by attending an Atlassian Community Event: we’ll donate $10 for every event attendee in March!
Join an Atlassian Community Event!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.