mirror of
https://github.com/TeamPGM/PagerMaid_Plugins.git
synced 2024-11-22 04:29:16 +00:00
👷 使用 CI 自动发送更新到 Tg
This commit is contained in:
parent
67770c945e
commit
6230af0aec
28
.github/workflows/python.yml
vendored
Normal file
28
.github/workflows/python.yml
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
name: Github commit to telegram
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
# 此步骤使用 GitHub 的 https://github.com/actions/checkout
|
||||
- name: checkout actions
|
||||
uses: actions/checkout@v1
|
||||
|
||||
# 设置python环境
|
||||
# 此步骤使用 GitHub 的 https://github.com/actions/setup-python
|
||||
- name: Set up Python 3.7
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: 3.7
|
||||
|
||||
# 安装依赖
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install requests
|
||||
|
||||
# 发送通知
|
||||
- name: Send notice
|
||||
run: python telegram_update.py ${{ secrets.TG_BOT_TOKEN }}
|
27
telegram_update.py
Normal file
27
telegram_update.py
Normal file
@ -0,0 +1,27 @@
|
||||
import json, time, sys
|
||||
from requests import get, post
|
||||
|
||||
token = str(sys.argv[1])
|
||||
|
||||
time.sleep(30)
|
||||
main = json.loads(get("https://api.github.com/repos/xtaodada/PagerMaid_Plugins/commits/master").content)
|
||||
push_content = {}
|
||||
push_content['chat_id'] = '-1001441461877'
|
||||
push_content['disable_web_page_preview'] = 'True'
|
||||
push_content['parse_mode'] = 'markdown'
|
||||
push_content['text'] = "#更新日志 #" + main['commit']['author'][
|
||||
'name'] + ' \n\n🔨 [' + main['sha'][0:7] + '](https://github.com/xtaodada/PagerMaid_Plugins/compare/' + \
|
||||
main[
|
||||
'sha'] + '): ' + main['commit']['message']
|
||||
url = 'https://api.telegram.org/bot' + token + '/sendMessage'
|
||||
try:
|
||||
main_req = post(url, data=push_content)
|
||||
except:
|
||||
pass
|
||||
push_content['chat_id'] = '-1001319957857'
|
||||
time.sleep(1)
|
||||
try:
|
||||
main_req = get(url, data=push_content)
|
||||
except:
|
||||
pass
|
||||
print(main['sha'] + " ok!")
|
Loading…
Reference in New Issue
Block a user