This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
Release Pipeline #17
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
name: Release Pipeline | |
on: | |
release: | |
types: [created] | |
jobs: | |
notification: | |
runs-on: ubuntu-latest-16-core | |
steps: | |
- name: Send Slack notification | |
uses: slackapi/[email protected] | |
with: | |
payload: | | |
{ | |
"repository": "${{ github.repository }}", | |
"version": "${{ github.ref }}" | |
} | |
env: | |
SLACK_WEBHOOK_URL: ${{ vars.RELEASE_PIPELINE_SLACK_WEBHOOK_URL }} |