mirror of
https://github.com/EpicMorg/atlassian-json.git
synced 2024-12-27 23:25:33 +03:00
16 lines
343 B
YAML
16 lines
343 B
YAML
name: telegram-informer
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
inform:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- name: Configure git
|
|
run: |
|
|
echo "Changes! Notify!"
|
|
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
|