-
Notifications
You must be signed in to change notification settings - Fork 8
106 lines (105 loc) ยท 3.59 KB
/
closed-pr-notification.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
name: Closed PR Notification
on:
pull_request:
branches:
- dev
- main
types:
- closed
jobs:
create-issue:
name: PR closed notification to slack
runs-on: ubuntu-latest
steps:
- name: Send closed PR notification
if: github.event.pull_request.merged != true
uses: slackapi/[email protected]
with:
payload: |
{
"text": "*PR์ด ๋ซํ์ต๋๋ค!*",
"attachments": [
{
"color": "#CF2027",
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*Title*\n<${{ github.event.pull_request.html_url }}|${{ github.event.pull_request.title }}>"
}
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Base branch*\n${{ github.base_ref }}"
},
{
"type": "mrkdwn",
"text": "*Compare branch*\n${{ github.head_ref }}"
},
{
"type": "mrkdwn",
"text": "*PR number*\n#${{ github.event.pull_request.number }}"
},
{
"type": "mrkdwn",
"text": "*Author*\n${{ github.event.pull_request.user.login }}"
}
]
}
]
}
]
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_PR_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
- name: Send merged PR notification
if: github.event.pull_request.merged == true
uses: slackapi/[email protected]
with:
payload: |
{
"text": "*PR์ด ๋จธ์ง๋์ต๋๋ค!*",
"attachments": [
{
"color": "#7539DE",
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*Title*\n<${{ github.event.pull_request.html_url }}|${{ github.event.pull_request.title }}>"
}
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Base branch*\n${{ github.base_ref }}"
},
{
"type": "mrkdwn",
"text": "*Compare branch*\n${{ github.head_ref }}"
},
{
"type": "mrkdwn",
"text": "*PR number*\n#${{ github.event.pull_request.number }}"
},
{
"type": "mrkdwn",
"text": "*Author*\n${{ github.event.pull_request.user.login }}"
}
]
}
]
}
]
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_PR_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK