Plane 이슈 목록 조회. Todo/In Progress 상태의 이슈를 확인하여 작업 대상을 파악한다.
Plane API를 호출하여 현재 프로젝트의 이슈 목록을 조회한다.
https://plane.shaul.krshaul-org0f65355d-c8c4-4d17-a1a4-6f7002b0ab06FORGE.env 파일의 PLANE_API_KEY 값 사용| 상태 | ID | Group |
|---|---|---|
| Backlog | 19dd4e9a-cfd8-430e-8920-92eabee31979 | backlog |
| Todo | ecfd19f1-9e2f-4001-822f-5471ec98a425 | unstarted |
| In Progress | aff7c00b-733a-4b14-ad93-d374a39c92b4 |
| started |
| Done | 0631f6ef-03dd-49b9-92bb-672aa4a54784 | completed |
| Cancelled | 1696eee7-f885-4a40-902a-c47fa0d61fba | cancelled |
.env 파일에서 PLANE_API_KEY 값을 읽는다.# Todo 이슈
curl -s -H "x-api-key: $PLANE_API_KEY" \
"https://plane.shaul.kr/api/v1/workspaces/shaul-org/projects/0f65355d-c8c4-4d17-a1a4-6f7002b0ab06/issues/?state=ecfd19f1-9e2f-4001-822f-5471ec98a425&per_page=50"
# In Progress 이슈
curl -s -H "x-api-key: $PLANE_API_KEY" \
"https://plane.shaul.kr/api/v1/workspaces/shaul-org/projects/0f65355d-c8c4-4d17-a1a4-6f7002b0ab06/issues/?state=aff7c00b-733a-4b14-ad93-d374a39c92b4&per_page=50"
## In Progress
- FORGE-{sequence_id}: {name} [{priority}]
## Todo
- FORGE-{sequence_id}: {name} [{priority}]
/plane-issues