follow 签到 #99
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: follow 签到 | |
on: | |
schedule: | |
# 每天 8 点(UTC 0 点)运行(北京时间 8 点) | |
- cron: '0 0 * * *' | |
workflow_dispatch: # 允许手动触发工作流程 | |
jobs: | |
sign-in: | |
runs-on: ubuntu-latest | |
steps: | |
# 检出仓库中的代码 | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
# 设置 Python 环境 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
# 安装依赖 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
# 传递 GitHub Secrets 并运行follow签到脚本 | |
- name: 运行follow签到脚本 | |
env: | |
FOLLOW_CSRF_TOKEN: ${{ secrets.FOLLOW_CSRF_TOKEN }} | |
FOLLOW_COOKIE: ${{ secrets.FOLLOW_COOKIE }} | |
WEBHOOK_KEY: ${{ secrets.WEBHOOK_KEY }} | |
SERVER_CHAN_KEY: ${{ secrets.SERVER_CHAN_KEY }} | |
SERVER_CHAN_CHANNEL: ${{secrets.SERVER_CHAN_CHANNEL}} | |
QMSG_KEY: ${{ secrets.QMSG_KEY }} | |
run: | | |
python scripts/follow.py |