You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
google-chat-notifier
v1.0.3
Sends a Google Chat notifications.
Name | Required | Description |
---|---|---|
name | true | Job name. Used for notification titles. |
url | true | Google Chat Webhook URL. |
status | true | Job status. Available values are success , failure , cancelled . We recommend using ${{ job.status }} or ${{ steps..outcome/conclusion }} |
custom_text | false | Custom text to show in message. Supports HTML tags. |
- name: google-chat-notifier
uses: javiern8410/[email protected]
with:
name: Build
url: ${{ secrets.GOOGLE_CHAT_WEBHOOK }}
status: ${{ job.status }}
custom_text: 'Your custom message.'
if: always()