-
Notifications
You must be signed in to change notification settings - Fork 0
/
github-app.json
117 lines (117 loc) · 3.29 KB
/
github-app.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "makeflow-github-issue-synchronizer",
"displayName": "GitHub Issue Synchronizer",
"description": "GitHub Issue Synchronizer for Makeflow",
"version": "0.1.8",
"permissions": ["task:update"],
"hookBaseURL": "https://power-apps.makeflow.com/issue-synchronizer/github",
"contributions": {
"powerGlances": [
{
"name": "github-issue-synchronizer",
"displayName": "GitHub Issue Synchronizer",
"description": "GitHub Issue Synchronizer for Makeflow",
"matcher": {
"path": "metadata_source.url",
"prefix": "{github-url}/{github-project-name}/issues/"
},
"configs": [
{
"field": "text",
"name": "github-url",
"displayName": "GitHub 地址",
"required": true
},
{
"field": "password",
"name": "github-token",
"displayName": "GitHub Token",
"required": true
},
{
"field": "text",
"name": "github-project-name",
"displayName": "项目名 (owner/repository)",
"required": true
},
{
"field": "text",
"name": "tags-pattern",
"displayName": "标签同步模式 (例如: `缺陷:bug,feature,*`), 留空为关闭同步"
},
{
"field": "text",
"name": "stages-pattern",
"displayName": "阶段标签同步模式 (例如: `开发:develop,交付,*`), 留空为关闭同步"
}
],
"inputs": [
{
"name": "task-stage",
"displayName": "任务状态",
"bind": {
"type": "variable",
"variable": "task_stage"
}
},
{
"name": "task-brief",
"displayName": "任务简述",
"bind": {
"type": "variable",
"variable": "task_brief"
}
},
{
"name": "task-description",
"displayName": "任务描述",
"bind": {
"type": "variable",
"variable": "task_description"
}
},
{
"name": "task-tags",
"displayName": "任务标签",
"bind": {
"type": "variable",
"variable": "task_tags"
}
},
{
"name": "task-nodes",
"displayName": "任务节点",
"bind": {
"type": "variable",
"variable": "task_nodes"
}
},
{
"name": "disabled",
"displayName": "禁用同步的变量",
"bind": {
"type": "variable",
"variable": "issueSynchronizerDisabled"
}
},
{
"name": "task-metadata-source",
"displayName": "任务创建来源",
"bind": {
"type": "variable",
"variable": "metadata_source"
}
},
{
"name": "task-url",
"displayName": "任务地址",
"bind": {
"type": "variable",
"variable": "task_url"
}
}
]
}
]
}
}