Merge pull request #1909 from totvs/release/v2.7.0rc1 #244
This file contains hidden or 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: Google Chat Notify | |
| on: | |
| workflow_dispatch: | |
| push: | |
| jobs: | |
| notify_google_chat: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: 'read' | |
| id-token: 'write' | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - id: 'notify_google_chat' | |
| uses: 'google-github-actions/send-google-chat-webhook@v0.0.4' | |
| with: | |
| webhook_url: '${{ secrets.GOOGLE_CHAT_WEBHOOK_URL }}' | |
| mention: "<users/all>" |