开始每日签到 #303
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: 开始每日签到 | |
on: | |
workflow_dispatch: | |
schedule: | |
# UTC 0点15分(北京时间 8点15分) | |
- cron: '15 0 * * *' | |
# 标星时触发工作流程 | |
watch: | |
types: [started] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.9 | |
- name: Install requirements | |
run: | | |
python -m pip install --upgrade pip | |
pip install requests | |
- name: Run checkin | |
run: | | |
python3 glados.py | |
env: | |
GLADOS_COOKIE: "${{ secrets.GLADOS_COOKIE }}" | |
PUSHPLUS_TOKEN: ${{ secrets.PUSHPLUS_TOKEN }} | |
- uses: gautamkrishnar/keepalive-workflow@master |