Dashboard for Project Logging (#36) #26
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: Post Message to Webex Room JS Action | |
# https://github.com/marketplace/actions/webex-post-message-to-room-javascript-action | |
on: | |
push: | |
tags: | |
- '*' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
webex_message: | |
runs-on: ubuntu-latest | |
name: Send a Webex Notification | |
steps: | |
- name: Post Message to Webex Room | |
uses: chrivand/action-webex-js@main | |
env: | |
WEBEX_TOKEN: ${{ secrets.WEBEX_TOKEN }} | |
WEBEX_ROOM_ID: ${{ secrets.WEBEX_ROOM_ID }} | |
MARKDOWN_MESSAGE: "**CPM Release Bot Announcement!** Just released ${{ github.ref_name }}, check out ${{ github.server_url }}/${{ github.repository }}/releases." |