jira-client
jira-client copied to clipboard
How can I set status
like this: issue.update().field(Field.STATUS,"测试通过").execute(); but result is 【net.rcarz.jiraclient.JiraException: Field 'status' does not exist or read-only】
I meet the same question .can you give me some idea?or show my you code .thanks
STATUS is not field
Try with
issue.transition().execute("测试通过");
make sure current status !="测试通过" before executing