Is it possible to configure a compare condition to match only certain file extensions? We'd like to create a rule that does the following:
When: Value changes for Attachment
If: Compare two values (If the attachment is .xls or .xlsx)
Then: Automatically assign to a specific user.
---------------------
I thought it might work with the following but I can't seem to get it to function:
First value: {{#issue.fields.attachments}}{{filename}},{{/issue.fields.attachments}}
condition: Contains
Second value: xls
--------------------------
Any guidance would be appreciated.
Hey Sean,
This can be done using the following.
First value:
{{fieldChange.toString}}
This will print out something like: your-file.xls
Then use "matches regular expression"
Then use this as the regex:
^.*\.(xls|xlsx)$
Then simply add the Assign issue action to assign it the specifid user.
Hope this helps.
Cheers,
Nick
This worked perfectly. Thanks for your assistance!
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.