-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate-jira-issues.zsh
60 lines (58 loc) · 1.17 KB
/
create-jira-issues.zsh
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/zsh
PAGE=$1
URL=$2
curl -X POST https://company-devrel.atlassian.net/rest/api/3/issue -H 'Authorization: Basic '$JIRA_API_KEY -H 'Accept: application/json' -H 'Content-Type: application/json' --data '
{
"fields": {
"summary": "Review the “'$PAGE'” documentation page",
"issuetype": {
"id": "10001"
},
"project": {
"key": "DEVREL"
},
"description": {
"type": "doc",
"version": 1,
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "Review the "
},
{
"type": "text",
"text": "'$PAGE'",
"marks": [
{
"type": "link",
"attrs": {
"href": "'$URL'"
}
}
]
},
{
"type": "text",
"text": " documentation page"
}
]
}
]
},
"reporter": {
"accountId": "61f17bab78b7fd0072ec4914"
},
"assignee": {
"accountId": "623c37d27910a200718bac4a"
},
"labels": [
"documentation",
"API-Builder",
"2022-Q2"
]
}
}
'