I want to auto create DashBoard when Issue Type of Deployment is created. This is logic right?
def projectKey = project.key as String
def issueTypesReq = get("/rest/api/2/issuetype").asObject(List)
assert issueTypesReq.status == 200
def taskType = issueTypesReq.body.find { it.name == "Deployment" }
assert taskType // Must have an issue type named Task
def response = post("/rest/api/3/dashboard")
.header("Content-Type", "application/json")
.body(
[
fields: [
name : "Issue summary",
description: "Issue description",
sharePermissions : [
"type": "global"
]
]
])
.asString()
if (response.status == 200) {
logger.info("Successfully Create JIRA DashBoard: {}", projectKey)
} else {
logger.error("Failed to create JIRA Dashboard: {}", projectKey)
Recommended Learning For You
Level up your skills with Atlassian learning
Learning Path
Become an effective Jira admin
Manage global settings and shared configurations called schemes to achieve goals more quickly.
Streamline Jira administration with effective governance
Improve how you administer and maintain Jira and minimize clutter for users and administrators.
Learning Path
Become an effective Jira software project admin
Set up software projects and configure tools and agile boards to meet your team's needs.