You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Slack Release Notifier
v2.1.0
Simple action to notify a slack channel after a new version of a project has been released.
workflow.yml
name: Release
on:
release:
types:
- created
jobs:
publish:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Notify Slack
id: slack
with:
slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }}
uses: fedecalendino/slack-release-notifier@v1.2.1
To be able to send the notification, a webhook url needs to be provided. You can get one by installing the app Incoming WebHooks into your slack workspace.