Skip to content

Commit f35d2c5

Browse files
committed
Action: Dummy commit
1 parent b750685 commit f35d2c5

File tree

1 file changed

+22
-20
lines changed

1 file changed

+22
-20
lines changed

.github/workflows/theme-release.yml

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
name: Slack notification for new theme release
22

33
on:
4-
release:
5-
types:
6-
- published
4+
pull_request:
5+
6+
permissions:
7+
contents: read
78

89
jobs:
910
release-notification:
1011
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
14+
actions: read # for 8398a7/action-slack
15+
checks: read
1116
steps:
1217
- name: Send notification
1318
uses: 8398a7/action-slack@1750b5085f3ec60384090fb7c52965ef822e869e # v3.18.0
@@ -18,24 +23,21 @@ jobs:
1823
username: 'Github',
1924
mention: 'channel',
2025
attachments: [{
21-
title: 'New theme release - ${{ github.event.release.name }}',
26+
title: `New theme release - THEME NAME`,
2227
color: '#009223',
23-
fields: [{
24-
title: 'Preview',
25-
value: `SOME PREVIEW LINK`,
26-
short: false
27-
},
28-
{
29-
title: 'Author',
30-
value: `${{ github.event.release.author.login }}`,
31-
short: true
32-
},
33-
{
34-
title: 'URL',
35-
value: `${{ github.event.release.html_url }}`,
36-
short: true
37-
}]
28+
fields: [
29+
{
30+
title: 'Preview',
31+
value: `SOME PREVIEW LINK`,
32+
short: false
33+
},
34+
{
35+
title: 'Tag',
36+
value: `TAG VALUE`,
37+
short: true
38+
}
39+
]
3840
}]
3941
}
4042
env:
41-
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
43+
SLACK_WEBHOOK_URL: 'https://hooks.slack.com/services/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'

0 commit comments

Comments
 (0)