每天 7:00, 19:00 GMT+8 自动完成健康填报,如想修改定时运行的时间,可修改 .github/workflows/healthReport.yml
中 schedule
属性。
如果当日有异常,请手动在 APP 端填写!!!!!!!!!!!!
Fork 本项目: zhangt2333/actions-NjuHealthReport (Star 自然是更好)
{
# fill them:
'username': 'fill-it', # 学号
'password': 'fill-it', # 密码
'location': 'fill-it', # 地址, 如 **xx省xx市xx区xxxx
'deadline': '2021-10-05', # 填报截止日期,超过该天则停止填报并报错到 actions,开区间
'none': 'none'
}
将填好的参数加入到 Secrets 中,name 为 DATA
,value 为步骤 2 中的多行字符串
如下图正确配置,这样运行失败的 Github Actions 事件会自动邮件通知你
-
依照
Github Actions 启用步骤
第 2、4 步,添加新的 Secret,假设命名为DATA2
-
复制一遍
.github/workflows/healthReport.yml
中最后一行python health_report_helper/main.py "${{ secrets.DATA }}"
并将其中的secrets.DATA
中的DATA
改为新 secrets 的键值。 -
修改后的文件应如下所示(假设新键为
DATA2
)
// .....
- name: Run Spider
run: |
python health_report_helper/main.py "${{ secrets.DATA }}"
python health_report_helper/main.py "${{ secrets.DATA2 }}"
MIT:被授权人有权利在软件和软件的所有副本中包含版权声明和许可声明的前提下,使用、复制、修改、合并、出版发行、散布、再授权及贩售软件及软件的副本。授权人不为被授权人行为承担任何责任,且无义务对著作进行更新。