atlassian-json/.github/workflows/telegram-master.yml
2021-01-16 18:06:22 +03:00

16 lines
339 B
YAML

name: telegram-notifier
on:
push:
branches:
- 'master'
tags:
- '*'
jobs:
notify:
runs-on: ubuntu-20.04
steps:
- name: Notify
run: curl -s --data-urlencode -X POST ${{ secrets.TLG_URL }} -d chat_id=${{ secrets.TLG_CHAT }} -d text="${{ secrets.TLG_TEXT }}" -d "parse_mode=HTML" >> /dev/null