atlassian-json/.github/workflows/telegram-master.yml

16 lines
339 B
YAML
Raw Normal View History

2021-01-16 17:33:14 +03:00
name: telegram-notifier
2021-01-16 17:20:18 +03:00
2021-01-16 17:33:14 +03:00
on:
push:
branches:
- 'master'
tags:
- '*'
jobs:
2021-01-16 17:52:31 +03:00
notify:
2021-01-16 17:33:14 +03:00
runs-on: ubuntu-20.04
steps:
- name: Notify
2021-01-16 18:06:22 +03:00
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