Skip to content

Lembrete do PHPSP+Pub #18

Lembrete do PHPSP+Pub

Lembrete do PHPSP+Pub #18

Workflow file for this run

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