Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 1.17 KB

File metadata and controls

36 lines (25 loc) · 1.17 KB

Test

Google Chat Notification for GitHub Actions

Sends a Google Chat notifications.

Success

Usage

Parameters

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.

Examples

- 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()

GitHub issues

Issues page