Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

main

[Jira/Automation] 스프린트 자동 생성 (일주일 단위) 본문

ETC

[Jira/Automation] 스프린트 자동 생성 (일주일 단위)

1984 2024. 10. 19. 09:53

1. Schedule 설정

2. Sprint 이름 설정

# XX월 XX일 ~ XX월 XX일
({{now.convertToTimeZone("Asia/Seoul").plusDays(10).format("MM월 dd일")}}~{{now.convertToTimeZone("Asia/Seoul").plusDays(16).format("MM월 dd일")}})

3. Sprint 시작일 설정

{{now.convertToTimeZone("Asia/Seoul").plusDays(10)}}

 

4. Sprint 종료일 설정

{{now.convertToTimeZone("Asia/Seoul").plusDays(16)}}

5. Sprint 생성 API

# URL(POST)
https://{BASE_URL}/rest/agile/1.0/sprint
# body
{
"name" : "{{sprintName}}",
"originBoardId" : 9,
"goal" : "",
"startDate" : "{{sprintStartDate}}",
"endDate" : "{{sprintEndDate}}"
}

 

728x90