-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathboost_collector_schedule.yaml.example
More file actions
64 lines (61 loc) · 2.35 KB
/
boost_collector_schedule.yaml.example
File metadata and controls
64 lines (61 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Boost collector schedule (see docs/Workflow.md)
# Copy to config/boost_collector_schedule.yaml for a working local file (often gitignored).
# default_time is in UTC (24h "HH:MM"). Beat runs at that UTC time. The default batch
# uses the UTC date for weekly/monthly eligibility so it matches the run time.
#
# Schedule types:
# daily - runs at group default_time every day (part of group batch).
# weekly - runs on the given weekday at default_time (use "on" or "day_of_week": monday..sunday or mon..sun).
# monthly - runs on the given day of month at default_time (use "on" or "day_of_month": 1-31).
# on_release - runs at default_time only when a new Boost release is detected (part of group batch).
# interval - runs every N minutes (use "minutes": 1-180); one Beat entry per group per interval.
#
# Every "command" must be a real manage.py command name from this repo.
groups:
github:
default_time: "16:10"
tasks:
- command: run_boost_usage_tracker
schedule: daily
args: ["--task", "monitor_content"]
- command: run_update_created_repos_by_language
schedule: daily
- command: run_boost_github_activity_tracker
schedule: daily
- command: run_boost_library_usage_dashboard
schedule: daily
# Weekly: same group time, only on Mondays
- command: run_clang_github_tracker
schedule: weekly
"on": monday
# Monthly: star snapshot on the 1st
- command: run_boost_usage_tracker
schedule: monthly
"on": 1
args: ["--task", "monitor_stars"]
# When a new Boost release is published (runner skips if none)
- command: collect_boost_libraries
schedule: on_release
# Short periodic run (separate Beat entry for this group)
- command: run_wg21_paper_tracker
schedule: interval
minutes: 60
slack:
default_time: "16:30"
tasks:
- command: run_cppa_slack_tracker
schedule: daily
- command: run_discord_activity_tracker
schedule: interval
minutes: 60
mailing_list:
default_time: "00:10"
tasks:
- command: run_boost_mailing_list_tracker
schedule: daily
- command: run_boost_mailing_list_tracker
schedule: weekly
"on": friday
- command: run_boost_mailing_list_tracker
schedule: monthly
"on": 15