mirror of
https://github.com/EpicMorg/atlassian-json.git
synced 2024-12-29 08:05:38 +03:00
16 lines
343 B
Plaintext
16 lines
343 B
Plaintext
|
name: telegram-informer
|
||
|
|
||
|
on: push
|
||
|
|
||
|
jobs:
|
||
|
update:
|
||
|
|
||
|
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
|