使用 GitHub Actions 调度定时任务

  1. 在项目根目录创建 .github/workflows 目录。
  2. workflows 目录下创建 schedule-cron-job.yml 文件。
  3. schedule-cron-job.yml 文件中添加以下内容:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: 'Schedule Cron Job'

on:
schedule:
- cron: '30 1 * * 1-5' # UTC 时间周一到周五 1:30 AM
workflow_dispatch: # 支持手动触发

jobs:
send-notification:
runs-on: ubuntu-latest

steps:
- name: Send GET request to Bark API
run: |
curl -X GET "https://api.day.app/your-token/title/content"