-
Notifications
You must be signed in to change notification settings - Fork 0
391 lines (375 loc) · 16.1 KB
/
Lark.yml
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
name: Lark notification
# https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows
on:
push:
issues:
pull_request:
discussion:
issue_comment:
discussion_comment:
jobs:
send-Lark-message:
runs-on: ubuntu-latest
steps:
- name: Commit message cleaning
id: commit_message
run: |
echo "${{ github.event.head_commit.message }}" | sed 's/"/\\"/g' > commit_message.txt
{
echo 'commit_message<<EOF'
cat commit_message.txt
echo 'EOF'
} >> $GITHUB_OUTPUT
- name: Commits pushed
uses: foxundermoon/feishu-action@v2
if: github.event_name == 'push'
with:
url: ${{ secrets.LARK_CHATBOT_HOOK_URL }}
msg_type: post
content: |
post:
zh_cn:
title: GitHub 代码提交
content:
- - tag: text
text: 提交链接:
- tag: a
text: ${{ github.event.head_commit.url }}
href: ${{ github.event.head_commit.url }}
- - tag: text
text: 代码分支:
- tag: a
text: ${{ github.ref }}
href: ${{ github.server_url }}/${{ github.repository }}/tree/${{ github.ref_name }}
- - tag: text
text: 提交作者:
- tag: a
text: ${{ github.actor }}
href: ${{ github.server_url }}/${{ github.actor }}
- - tag: text
text: 提交信息:
- tag: text
text: "${{ steps.commit_message.outputs.commit_message }}"
- name: Issue body cleaning
id: issue_body
run: |
echo "${{ github.event.issue.body }}" | sed 's/"/\\"/g' > issue_body.txt
{
echo 'issue_body<<EOF'
cat issue_body.txt
echo 'EOF'
} >> $GITHUB_OUTPUT
- name: Issue opened
uses: foxundermoon/feishu-action@v2
if: github.event_name == 'issues' && (github.event.action == 'opened' || github.event.action == 'reopened')
with:
url: ${{ secrets.LARK_CHATBOT_HOOK_URL }}
msg_type: post
content: |
post:
zh_cn:
title: GitHub issue 打开:${{ github.event.issue.title }}
content:
- - tag: text
text: 链接:
- tag: a
text: ${{ github.event.issue.html_url }}
href: ${{ github.event.issue.html_url }}
- - tag: text
text: 作者:
- tag: a
text: ${{ github.event.issue.user.login }}
href: ${{ github.event.issue.user.html_url }}
- - tag: text
text: 指派:
- tag: a
text: ${{ github.event.issue.assignee.login }}
href: ${{ github.event.issue.assignee.html_url }}
- - tag: text
text: "标签:${{ github.event.issue.labels }}"
- - tag: text
text: 里程碑:${{ github.event.issue.milestone.title }}
- - tag: text
text: 描述:
- tag: text
text: "${{ steps.issue_body.outputs.issue_body }}"
- name: Issue edited
uses: foxundermoon/feishu-action@v2
if: github.event_name == 'issues' && (github.event.action == 'edited' || github.event.action == 'transferred' || github.event.action == 'labeled' || github.event.action == 'unlabeled' || github.event.action == 'assigned' || github.event.action == 'unassigned')
with:
url: ${{ secrets.LARK_CHATBOT_HOOK_URL }}
msg_type: post
content: |
post:
zh_cn:
title: GitHub issue 编辑:${{ github.event.issue.title }}
content:
- - tag: text
text: 链接:
- tag: a
text: ${{ github.event.issue.html_url }}
href: ${{ github.event.issue.html_url }}
- - tag: text
text: 作者:
- tag: a
text: ${{ github.event.issue.user.login }}
href: ${{ github.event.issue.user.html_url }}
- - tag: text
text: 指派:
- tag: a
text: ${{ github.event.issue.assignee.login }}
href: ${{ github.event.issue.assignee.html_url }}
- - tag: text
text: "标签:${{ github.event.issue.labels }}"
- - tag: text
text: 里程碑:${{ github.event.issue.milestone.title }}
- - tag: text
text: 描述:
- tag: text
text: "${{ steps.issue_body.outputs.issue_body }}"
- name: Issue closed
uses: foxundermoon/feishu-action@v2
if: github.event_name == 'issues' && github.event.action == 'closed'
with:
url: ${{ secrets.LARK_CHATBOT_HOOK_URL }}
msg_type: post
content: |
post:
zh_cn:
title: GitHub issue 关闭:${{ github.event.issue.title }}
content:
- - tag: text
text: 链接:
- tag: a
text: ${{ github.event.issue.html_url }}
href: ${{ github.event.issue.html_url }}
- - tag: text
text: 作者:
- tag: a
text: ${{ github.event.issue.user.login }}
href: ${{ github.event.issue.user.html_url }}
- - tag: text
text: 指派:
- tag: a
text: ${{ github.event.issue.assignee.login }}
href: ${{ github.event.issue.assignee.html_url }}
- - tag: text
text: "标签:${{ github.event.issue.labels }}"
- - tag: text
text: 里程碑:${{ github.event.issue.milestone.title }}
- - tag: text
text: 描述:
- tag: text
text: "${{ steps.issue_body.outputs.issue_body }}"
- name: PR body cleaning
id: PR_body
run: |
echo "${{ github.event.pull_request.body }}" | sed 's/"/\\"/g' > PR_body.txt
{
echo 'PR_body<<EOF'
cat PR_body.txt
echo 'EOF'
} >> $GITHUB_OUTPUT
- name: PR opened
uses: foxundermoon/feishu-action@v2
if: github.event_name == 'pull_request' && (github.event.action == 'opened' || github.event.action == 'reopened')
with:
url: ${{ secrets.LARK_CHATBOT_HOOK_URL }}
msg_type: post
content: |
post:
zh_cn:
title: GitHub PR 打开:${{ github.event.pull_request.title }}
content:
- - tag: text
text: 链接:
- tag: a
text: ${{ github.event.pull_request.html_url }}
href: ${{ github.event.pull_request.html_url }}
- - tag: text
text: 作者:
- tag: a
text: ${{ github.event.pull_request.user.login }}
href: ${{ github.event.pull_request.user.html_url }}
- - tag: text
text: 指派:
- tag: a
text: ${{ github.event.pull_request.assignee.login }}
href: ${{ github.event.pull_request.assignee.html_url }}
- - tag: text
text: "标签:${{ github.event.pull_request.labels }}"
- - tag: text
text: 里程碑:${{ github.event.pull_request.milestone.title }}
- - tag: text
text: 描述:
- tag: text
text: "${{ steps.PR_body.outputs.PR_body }}"
- name: PR edited
uses: foxundermoon/feishu-action@v2
if: github.event_name == 'pull_request' && (github.event.action == 'edited' || github.event.action == 'labeled' || github.event.action == 'unlabeled' || github.event.action == 'assigned' || github.event.action == 'unassigned')
with:
url: ${{ secrets.LARK_CHATBOT_HOOK_URL }}
msg_type: post
content: |
post:
zh_cn:
title: GitHub PR 编辑:${{ github.event.pull_request.title }}
content:
- - tag: text
text: 链接:
- tag: a
text: ${{ github.event.pull_request.html_url }}
href: ${{ github.event.pull_request.html_url }}
- - tag: text
text: 作者:
- tag: a
text: ${{ github.event.pull_request.user.login }}
href: ${{ github.event.pull_request.user.html_url }}
- - tag: text
text: 指派:
- tag: a
text: ${{ github.event.pull_request.assignee.login }}
href: ${{ github.event.pull_request.assignee.html_url }}
- - tag: text
text: "标签:${{ github.event.pull_request.labels }}"
- - tag: text
text: 里程碑:${{ github.event.pull_request.milestone.title }}
- - tag: text
text: 描述:
- tag: text
text: "${{ steps.PR_body.outputs.PR_body }}"
- name: PR closed
uses: foxundermoon/feishu-action@v2
if: github.event_name == 'pull_request' && github.event.action == 'closed'
with:
url: ${{ secrets.LARK_CHATBOT_HOOK_URL }}
msg_type: post
content: |
post:
zh_cn:
title: GitHub PR 关闭:${{ github.event.pull_request.title }}
content:
- - tag: text
text: 链接:
- tag: a
text: ${{ github.event.pull_request.html_url }}
href: ${{ github.event.pull_request.html_url }}
- - tag: text
text: 作者:
- tag: a
text: ${{ github.event.pull_request.user.login }}
href: ${{ github.event.pull_request.user.html_url }}
- - tag: text
text: 指派:
- tag: a
text: ${{ github.event.pull_request.assignee.login }}
href: ${{ github.event.pull_request.assignee.html_url }}
- - tag: text
text: "标签:${{ github.event.pull_request.labels }}"
- - tag: text
text: 里程碑:${{ github.event.pull_request.milestone.title }}
- - tag: text
text: 描述:
- tag: text
text: "${{ steps.PR_body.outputs.PR_body }}"
- name: Discussion body cleaning
id: discussion_body
run: |
echo "${{ github.event.discussion.body }}" | sed 's/"/\\"/g' > discussion_body.txt
{
echo 'discussion_body<<EOF'
cat discussion_body.txt
echo 'EOF'
} >> $GITHUB_OUTPUT
- name: Discussion created
uses: foxundermoon/feishu-action@v2
if: github.event_name == 'discussion' && github.event.action == 'created'
with:
url: ${{ secrets.LARK_CHATBOT_HOOK_URL }}
msg_type: post
content: |
post:
zh_cn:
title: GitHub 帖子发布:${{ github.event.discussion.title }}
content:
- - tag: text
text: 链接:
- tag: a
text: ${{ github.event.discussion.html_url }}
href: ${{ github.event.discussion.html_url }}
- - tag: text
text: 作者:
- tag: a
text: ${{ github.event.discussion.user.login }}
href: ${{ github.event.discussion.user.html_url }}
- - tag: text
text: "分类:${{ github.event.discussion.category }}"
- - tag: text
text: "标签:${{ github.event.discussion.labels }}"
- - tag: text
text: 描述:
- tag: text
text: "${{ steps.discussion_body.outputs.discussion_body }}"
- name: Discussion edited
uses: foxundermoon/feishu-action@v2
if: github.event_name == 'discussion' && (github.event.action == 'edited' || github.event.action == 'transferred' || github.event.action == 'category_changed' || github.event.action == 'labeled' || github.event.action == 'unlabeled')
with:
url: ${{ secrets.LARK_CHATBOT_HOOK_URL }}
msg_type: post
content: |
post:
zh_cn:
title: GitHub 帖子修改:${{ github.event.discussion.title }}
content:
- - tag: text
text: 链接:
- tag: a
text: ${{ github.event.discussion.html_url }}
href: ${{ github.event.discussion.html_url }}
- - tag: text
text: 作者:
- tag: a
text: ${{ github.event.discussion.user.login }}
href: ${{ github.event.discussion.user.html_url }}
- - tag: text
text: "分类:${{ github.event.discussion.category }}"
- - tag: text
text: "标签:${{ github.event.discussion.labels }}"
- - tag: text
text: 描述:
- tag: text
text: "${{ steps.discussion_body.outputs.discussion_body }}"
- name: Comment body cleaning
id: comment_body
run: |
echo "${{ github.event.comment.body }}" | sed 's/"/\\"/g' > comment_body.txt
{
echo 'comment_body<<EOF'
cat comment_body.txt
echo 'EOF'
} >> $GITHUB_OUTPUT
- name: Issue/Discussion commented
uses: foxundermoon/feishu-action@v2
if: (github.event_name == 'issue_comment' || github.event_name == 'discussion_comment') && (github.event.action == 'created' || github.event.action == 'edited')
with:
url: ${{ secrets.LARK_CHATBOT_HOOK_URL }}
msg_type: post
content: |
post:
zh_cn:
title: GitHub 帖子评论:${{ github.event.issue.title }}
content:
- - tag: text
text: 链接:
- tag: a
text: ${{ github.event.comment.html_url }}
href: ${{ github.event.comment.html_url }}
- - tag: text
text: 作者:
- tag: a
text: ${{ github.event.comment.user.login }}
href: ${{ github.event.comment.user.html_url }}
- - tag: text
text: 描述:
- tag: text
text: "${{ steps.comment_body.outputs.comment_body }}"