From 56457c858cc31b6cb13bb64bad2d56f83bba0fdd Mon Sep 17 00:00:00 2001 From: Nicolas Giard Date: Sun, 19 Jun 2022 23:10:41 -0400 Subject: [PATCH] ci: add test telegram notify workflow --- .github/workflows/telegram.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/telegram.yml diff --git a/.github/workflows/telegram.yml b/.github/workflows/telegram.yml new file mode 100644 index 00000000..e7463e5b --- /dev/null +++ b/.github/workflows/telegram.yml @@ -0,0 +1,18 @@ +name: Telegram Test +on: + workflow_dispatch: +jobs: + build: + runs-on: ubuntu-latest + steps: + + - name: Notify Telegram Channel + uses: appleboy/telegram-action@0.0.3 + with: + to: ${{ secrets.TELEGRAM_TO }} + token: ${{ secrets.TELEGRAM_TOKEN }} + format: markdown + message: | + Wiki.js **2.5.284** has been released! + + See [release notes](https://github.com/requarks/wiki/releases) for details.