Skip to content

Test action-send-telegram #6

Test action-send-telegram

Test action-send-telegram #6

Workflow file for this run

name: Test action-send-telegram
on:
workflow_dispatch:
inputs:
message:
description: 'Message to send to a Telegram user or group'
required: true
type: string
jobs:
send-message:
runs-on: ubuntu-latest
steps:
- name: Send a message to a Telegram user or group
id: sendMessage
uses: p4irin/action-send-telegram@v1
with:
telegram-bot-token: ${{ secrets.TELEGRAM_BOT_TOKEN }}
telegram-chat-id: ${{ secrets.TELEGRAM_CHAT_ID }}
message: ${{ inputs.message }}