...
We recommend not to use any text fields as placeholders. Or any other field, of which the user can freely change the text. Only use fields which can contain one/several of clearly defined values.
Syntax for
...
Field Names
Field names in your JQL should be the same as Key in the Advance Advanced Search. You can We suggest to use the issue navigator to write correct key's auto-complete feature to get the correct field names. In Jira's top menu bar, go to Issues > Search for issues, and switch to Advanced search.
System Fields
System Fields names should be same as used in JQL. For example:
...
- Approver or cf[10010]
- Hosting Server or cf[12910]
- Date to Join or cf[11000]
etc.
If you have several custom fields with the same name, you can only use the cf[12345] notation to refer to one of them.
Syntax for Values of the current Issue
Replaceable value from the current issue must be between curly brackets like
...
You can use either the name of a custom field, or it's its id. For example:
- {issue.My Text Field}
- {issue.customfield_12345}
...