This repository has been archived by the owner on Nov 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
gh-plugin.json
69 lines (69 loc) · 1.89 KB
/
gh-plugin.json
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
61
62
63
64
65
66
67
68
69
{
"base": "rest/api/2",
"hooks": {
"pull-request": {
"close": {
"before": [],
"after": [
"gh jira {{jira.number.previous}}"
]
},
"fetch": {
"before": [],
"after": []
},
"fwd": {
"before": [],
"after": [
"gh jira {{jira.number.current}} --assignee {{options.fwd}} --submittedLink {{forwardedLink}} --transition"
]
},
"merge": {
"before": [],
"after": [
"gh jira {{jira.number.previous}}"
]
},
"submit": {
"before": [],
"after": [
"gh jira {{jira.number.previous}} --assignee {{options.submit}} --submittedLink {{submittedLink}} --transition"
]
}
}
},
"host": "issues.liferay.com",
"password": "",
"port": "",
"protocol": "https",
"inferFromCommitTitle": true,
"transition": {
"Close Issue": {
"Fix Version/s": true
},
"Code Review Request": {
"Assignee": {
"name": "{{options.assignee}}"
},
"Git Pull Request": "{{options.submittedLink}}"
},
"Create Review Request": {
"Assignee": {
"name": "{{options.assignee}}"
},
"Git Pull Request": "{{options.submittedLink}}"
},
"Send for Review": {
"Assignee": {
"name": "{{options.assignee}}"
},
"Git Pull Request": "{{options.submittedLink}}"
},
"Start Progress": {
"Assignee": {
"name": "{{jira.user}}"
}
}
},
"user": ""
}