v10.2024.26 #11
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
# Attached resources: | |
# - GitHub SECRETS: | |
# -> global: SLACK_WEBHOOK_URL -> Webhook URL for posting messages to slack | |
# - GitHub VARIABLES: | |
# -> local.SLACK_RELEASE_CHANNEL -> Notify people that release is ready. | |
name: Broadcast Release Notes | |
on: | |
release: | |
types: [released] | |
workflow_dispatch: | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Release Notes | |
uses: act10ns/[email protected] | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
with: | |
status: ${{ job.status }} | |
channel: ${{ vars.SLACK_RELEASE_CHANNEL }} | |
config: .github/config/releaseNotesConfig.yml |