Skip to content

Commit

Permalink
release v0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dtherhtun committed Oct 14, 2020
1 parent b5773af commit 0f1d4a1
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,17 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- run: echo ::set-output name=action_msg::Someone $GITHUB_EVENT_NAME to $GITHUB_REPOSITORY - $GITHUB_REF - commitid $GITHUB_SHA
id: txt
- name: Chat Setup
uses: DTherHtun/google-chat-action@v0.3
uses: DTherHtun/google-chat-action@v0.4
with:
msg: ${GITHUB_REF}
msg: ${{ steps.txt.outputs.action_msg }}
webhook: "https://chat.googleapis.co....."
```
OR
for faster.
```yaml
name: Sample Testing
on: [push]
Expand All @@ -32,9 +35,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- run: echo ::set-output name=action_msg::Someone $GITHUB_EVENT_NAME to $GITHUB_REPOSITORY - $GITHUB_REF - commitid $GITHUB_SHA
id: txt
- name: Chat Setup
uses: docker://dther/google-chat-action:latest
with:
msg: ${GITHUB_REF}
msg: ${{ steps.txt.outputs.action_msg }}
webhook: "https://chat.googleapis.co....."
```

0 comments on commit 0f1d4a1

Please sign in to comment.