Skip to content

Fix reply in thread #17

Fix reply in thread

Fix reply in thread #17

Workflow file for this run

name: Build & Test
on:
pull_request:
push:
branches:
- master
tags:
- "v*"
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn test
- name: Google Chat Notification
uses: nakamuraos/[email protected]
with:
title: Build
webhookUrl: ${{ secrets.GOOGLE_CHAT_WEBHOOK }}
status: ${{ job.status }}
threadKey: ${{ secrets.GOOGLE_CHAT_THREAD_KEY }}
if: always()