notify/README.md
2020-10-14 17:22:58 +06:30

40 lines
665 B
Markdown

# google-chat-action
Sample
```yaml
name: Sample Testing
on: [push]
jobs:
my_job:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Chat Setup
uses: DTherHtun/google-chat-action@v0.2
with:
msg: ${GITHUB_REF}
webhook: "https://chat.googleapis.co....."
```
OR
```yaml
name: Sample Testing
on: [push]
jobs:
my_job:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Chat Setup
uses: docker://dther/google-chat-action:latest
with:
msg: ${GITHUB_REF}
webhook: "https://chat.googleapis.co....."
```