fix(clients.json): remove hyphen from suffix in multiple client entri… #116
This file contains 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: Telegram Notification | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
types: [opened, reopened, closed] | |
jobs: | |
notify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send Telegram Message | |
uses: appleboy/telegram-action@master | |
with: | |
to: ${{ secrets.TELEGRAM_CHAT_ID }} | |
token: ${{ secrets.TELEGRAM_BOT_TOKEN }} | |
format: markdown | |
message: | | |
*🔨 New Commit to ${{ github.repository }}* | |
🔄 *Event*: ${{ github.event_name }} | |
👤 *Author*: ${{ github.actor }} | |
🌿 *Branch*: ${{ github.ref_name }} | |
*Commit Message*: | |
``` | |
${{ github.event.head_commit.message || github.event.pull_request.title }} | |
``` | |
[View Details](${{ github.event.head_commit.url || github.event.pull_request.html_url }}) |