Hi,
I'm sending a web request from Jira to Azure to trigger a pipeline. In the web request I'm sending the issue key by simply using {{issue.key}}
I also want to send the value of the custom field "environment" which is a checkbox. The field have a value for the ticket I'm trying send. Note that I have two fields in my jira project as Environment. One field is a text field and the other is a checkbox. I want to access the checkbox field value.
My request body is as follows:
{
"resources": {
"repositories": {
"self": { "refName": "refs/heads/main" }
}
},
"templateParameters": {
"testPlanKey": "{{issue.key}}",
"targetEnvironment": "{{issue.Environment.name}}"
}
}
Hi Michaela.
The code would be quite complex. I would recommend you simply use the predefined clone postfunction twice. Would that be an option?
Cheers!
Dyelamos
Hi Dyelamos,
thanks for your answer. Well I thought about this but then I need to do it not twice but more like 10 -50 times. Depending on how often I need the issue.
Here is what I am trying to do:
We want to have recurring tasks in Jira, all instances created at once with the appropriate due dates. Therefore I have a Master issue with all the data in it including how often the issue is repeated. On workflow transition "create instances" I create all instances at once using the post-function. Due dates are calculated and set there also.
I currently don't see a way of calling the post-function each time of cloning an issue.
Do you have any idea how to do it?
My current solution is to create new issues and copy the fields. Unfortunately this is also a little error prone as I need to add all needed fields by hand.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Michaela.
This as I explained before is quite complex. As a client of scriptrunner you have access to all of our code within the JAR. How our functions work are as follows:
1. You have a map of strings to strings with all of the paramethers.
2. You should create an instance of the function that you are using, in this case CloneIssueWithAttachments.groovy if I'm not mistaken.
3. After that, you should call the class's .doScript() function with the params map.
As I said, this might be quite challenging. Could I suggest that you contact our consultancy services to hire help on this?
Cheers!
DYelamos
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.