v19.15.1 #145
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow announces the new release on the Frontend Slack channel | |
name: Announce the release on Slack | |
on: | |
release: | |
types: [created] | |
jobs: | |
announce-on-slack: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Slackify the release body | |
id: release_body | |
uses: LoveToKnow/[email protected] | |
with: | |
text: ${{ github.event.release.body }} | |
- name: Announce on Slack 📢 | |
uses: homeday-de/[email protected] | |
with: | |
webhook_url: ${{ secrets.SLACK_RELEASE_BOT_WEBHOOK_URL }} | |
title: ${{ github.event.release.name }} | |
body: ${{ steps.release_body.outputs.text }} | |
context: Homeday Blocks |