From 4718cdcbaee6f9e366c4ec8671b52c498deb5005 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Kilchenmann?= Date: Thu, 14 Jan 2021 15:11:07 +0100 Subject: [PATCH] chore(ghi-ci): google chat release notification (#1785) --- .github/workflows/main.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 718ccdd243..753036c7b5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -381,6 +381,18 @@ jobs: df -h docker system df + # google chat notification about release + notification: + name: Google chat notification about release and published version + needs: [publish] + runs-on: ubuntu-latest + if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags') + steps: + - name: Send notification to google chat room "DSP releases" + uses: lakto/google-chat-action@main + with: + url: ${{ secrets.GOOGLE_CHAT_DSP_RELEASES_WEBHOOK_URL }} + # deploy documentation only on release deploy-docs: name: Deploy docs (on release only)