Merge pull request #7 from cleverage/prepare-release #1
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
name: Rocket chat notifications | |
# Controls when the action will run. | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
notification: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get the tag short reference | |
id: get_tag | |
run: echo "TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT | |
- name: Rocket.Chat Notification | |
uses: madalozzo/Rocket.Chat.GitHub.Action.Notification@master | |
with: | |
type: success | |
job_name: "[cleverage/flysystem-process-bundle](https://github.com/cleverage/flysystem-process-bundle) : ${{ steps.get_tag.outputs.TAG }} has been released" | |
url: ${{ secrets.CLEVER_AGE_ROCKET_CHAT_WEBOOK_URL }} |