PagerMaid_Plugins/.github/workflows/python.yml
Xtao_dada 2b5987ec68
📦 xtao-some : 修改 pixiv 反代 api , 优化逻辑 , 提醒 (#66)
* 👷 更新 CI 通知范围

* 👷 修改提醒间隔时间

* 📦 修改 pixiv 反代 api , 优化逻辑 , 提醒

* Update list.json
2020-11-08 00:17:37 +08:00

32 lines
711 B
YAML

name: Github commit to telegram
on:
push:
branches:
- master
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 }}