File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change 1
1
name : Slack notification for new theme release
2
2
3
3
on :
4
- release :
5
- types :
6
- - published
4
+ pull_request :
5
+
6
+ permissions :
7
+ contents : read
7
8
8
9
jobs :
9
10
release-notification :
10
11
runs-on : ubuntu-latest
12
+ permissions :
13
+ contents : read
14
+ actions : read # for 8398a7/action-slack
15
+ checks : read
11
16
steps :
12
17
- name : Send notification
13
18
uses : 8398a7/action-slack@1750b5085f3ec60384090fb7c52965ef822e869e # v3.18.0
@@ -18,13 +23,18 @@ jobs:
18
23
username: 'Github',
19
24
mention: 'channel',
20
25
attachments: [{
21
- title: ' New theme release - ${{ github.event.release.name }}' ,
26
+ title: ` New theme release - ${{ github.event.release.name }}` ,
22
27
color: '#009223',
23
28
fields: [{
24
29
title: 'Preview',
25
30
value: `SOME PREVIEW LINK`,
26
31
short: false
27
32
},
33
+ {
34
+ title: 'Tag',
35
+ value: `${{ github.event.release.tag_name }}`,
36
+ short: true
37
+ },
28
38
{
29
39
title: 'Author',
30
40
value: `${{ github.event.release.author.login }}`,
You can’t perform that action at this time.
0 commit comments