-
Notifications
You must be signed in to change notification settings - Fork 31
103 lines (100 loc) · 3.42 KB
/
slack.yaml
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
name: Lembrete do PHPSP+Pub
on:
schedule:
- cron: '0 10 1 */1 *' # At 10:00 on day-of-month 1 in every month.
jobs:
enviar_lembretes_slack:
runs-on: ubuntu-latest
steps:
- name: Enviar lembrete ao canal General
id: slack_general
uses: slackapi/[email protected]
with:
channel-id: '#general'
# For posting a rich message using Block Kit
payload: |
{
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Dá-lhe manada :elephpant:!"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Passando pra lembrar que toda segunda quinta-feira do mês rola o PHPSP + Pub :beers: :phpsp:, nosso evento mensal com breja, php, gente boa e networking."
}
},
{
"type": "section",
"block_id": "section567",
"text": {
"type": "mrkdwn",
"text": "Bora fazer o RSVP lá no <https://www.meetup.com/php-sp/|meetup.com>, convidar uma galera e comparecer!"
}
},
{
"type": "section",
"block_id": "section789",
"fields": [
{
"type": "mrkdwn",
"text": "Te vejo lá :xablau:!"
}
]
}
]
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_GENERAL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
- name: Enviar lembrete ao canal Eventos
id: slack_eventos
uses: slackapi/[email protected]
with:
channel-id: '#eventos'
# For posting a rich message using Block Kit
payload: |
{
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Dá-lhe manada :elephpant:!"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Passando pra lembrar que toda segunda quinta-feira do mês rola o PHPSP + Pub :beers: :phpsp:, nosso evento mensal com breja, php, gente boa e networking."
}
},
{
"type": "section",
"block_id": "section567",
"text": {
"type": "mrkdwn",
"text": "Bora fazer o RSVP lá no <https://www.meetup.com/php-sp/|meetup.com>, convidar uma galera e comparecer!"
}
},
{
"type": "section",
"block_id": "section789",
"fields": [
{
"type": "mrkdwn",
"text": "Te vejo lá :xablau:!"
}
]
}
]
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_EVENTOS }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK