-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathcron_run_weekdays.sh
executable file
·201 lines (140 loc) · 6.79 KB
/
cron_run_weekdays.sh
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#!/bin/bash
source ./scripts/cron_common_start.sh
# Update the triage owners on Bugzilla
python -m bugbot.rules.triage_owner_rotations --production
# Close inactive intermittent bugs
python -m bugbot.rules.close_intermittents --production
# Send a todo list to set priority
# Daily
python -m bugbot.rules.to_triage --production
# Process reminders
# Daily
python -m bugbot.rules.reminder --production
# Nag triage fallback to update calendar
# Daily
python -m bugbot.round_robin_fallback --production
# Needinfo assignee when a patch could be uplifted to beta
# Daily
python -m bugbot.rules.uplift_beta --production
# What is fixed in nightly but affecting beta or release
# Daily
python -m bugbot.rules.missed_uplifts --production
# Bug with both the regression and feature keywords
# Pretty rare
python -m bugbot.rules.feature_regression --production
# Detect one word summary
# a bit rare
python -m bugbot.rules.one_two_word_summary --production
# Bugs where the reporter has a needinfo
# Pretty common
python -m bugbot.rules.reporter_with_ni --production
# Notify bugs in untriaged with an important severity
python -m bugbot.rules.untriage_important_sev --production
# Needinfo the assignee or the triage owner when a bug has leave-open keyword an no activity
# Pretty common
python -m bugbot.rules.leave_open_no_activity --production
# Needinfo the triage owner or the assignee when we find meta bugs not depending on bugs and no activity
# Pretty common
python -m bugbot.rules.meta_no_deps_no_activity --production
# Several rules here
# 1) has an unlanded patch or some flags not up-to-date
# Pretty rare
# 2) Tracked bugs
# 3) Tracked bugs with needinfos
python -m bugbot.rules.multi_nag --production
# has a r+ patch, is open, has no activity for few weeks
# Pretty common
python -m bugbot.rules.not_landed --production
# New workflow
# https://docs.google.com/document/d/1EHuWa-uR-7Sq63X1ZiDN1mvJ9gQtWiqYrCifkySJyW0/edit#
# https://docs.google.com/drawings/d/1oZA-AUvkOxGMNhZNofL8Wlfk6ol3o5ATQCV5DJJKbwM/edit
python -m bugbot.rules.workflow.multi_nag --production
# Defect with the "feature" keyword
python -m bugbot.rules.feature_but_type_defect --production
# Defect with the "meta" keyword
python -m bugbot.rules.meta_defect --production
# Bugs with several duplicates
python -m bugbot.rules.several_dups --production
# Bugs with a lot of cc
python -m bugbot.rules.several_cc --production
# Bugs with a lot of votes
python -m bugbot.rules.several_votes --production
# Bugs with a lot of comments
python -m bugbot.rules.several_comments --production
# Bugs with a lot of see also
python -m bugbot.rules.several_see_also --production
# Bug caused several regressions recently reported
# Pretty rare
python -m bugbot.rules.warn_regressed_by --production
# Defect starting with please or enable in the title
python -m bugbot.rules.defect_with_please_or_enable --production
# Regressions without regressed_by and some dependencies (blocks, depends_on)
# Pretty rare
python -m bugbot.rules.regression_without_regressed_by --production
# Bugs with a fuzzing bisection but without regressed_by
python -m bugbot.rules.bisection_without_regressed_by --production
# Suggest components for untriaged bugs (daily, full list without confidence threshold)
python -m bugbot.rules.component --frequency daily --production
# Try to detect potential wrong bug types using bugbug
python -m bugbot.rules.defectenhancementtask --production
# Try to detect potential missing Has STR using bugbug
python -m bugbot.rules.stepstoreproduce --production
# Unassign inactive bugs with the good-first-bug keyword
python -m bugbot.rules.good_first_bug_unassign_inactive --production
# Look for missing bugzilla comments for recently-landed changesets
python -m bugbot.rules.missed_landing_comment --production
# Look for recently landed changesets referencing leave-open security bugs
python -m bugbot.rules.leave_open_sec --production
# Look for recent PDF.js updates that fix some bug
python -m bugbot.rules.pdfjs_update --production
# Look for tracked bugs with a needinfo from a release manager
python -m bugbot.rules.ni_from_manager --production
# Approve tracking request for bugs automatically filed for expiring telemetry probes
python -m bugbot.rules.telemetry_expiry_tracking_autoapproval --production
# Needinfo triage owner on bugs assigned to inactive accounts
python -m bugbot.rules.assignee_no_login --production
# Needinfo for bugs with inconsistent severity flags
python -m bugbot.rules.severity_inconsistency --production
# Needinfo for bugs with underestimated severity levels
# python -m bugbot.rules.severity_underestimated --production
# Needinfo for bugs with high security keywords whose set to low severity
python -m bugbot.rules.severity_high_security --production
# Nag for components that need triage owner to be assigned
python -m bugbot.rules.vacant_triage_owner --production
# Notify about bugs with needinfo requests on inactive users
python -m bugbot.rules.inactive_ni_pending --production
# Confirm bugs with crash signatures
python -m bugbot.rules.crash_signature_confirm --production
# Bugs with patches after being closed
python -m bugbot.rules.patch_closed_bug --production
# Confirm bugs with affected flags
python -m bugbot.rules.affected_flag_confirm --production
# Suggest increasing the severity for bugs with P1 WebCompat priority
python -m bugbot.rules.severity_high_compat_priority --production
# Identify missing or inactive team managers
python -m bugbot.rules.vacant_team_manager --production
# Highlight topcrash bugs
python -m bugbot.rules.topcrash_highlight --production
# Notify about tracked bugs with no assignee, low severity, or low priority
python -m bugbot.rules.tracked_attention --production
# Needinfo patch authors to find active reviewers
python -m bugbot.rules.inactive_reviewer --production
# Nag on fuzz blocker bugs
python -m bugbot.rules.fuzz_blockers --production
# Detect bugs with small crash volume
python -m bugbot.rules.crash_small_volume --production
# Send a list with security bugs that could be un-hidden
python -m bugbot.rules.security_unhide_dups --production
# Suggest increasing the severity when duplicate bugs have higher severity
python -m bugbot.rules.severity_higher_dups --production
# Detect outdated triage owner rotation definitions
python -m bugbot.rules.triage_rotations_outdated --production
# Follow up on expiring variants
python -m bugbot.rules.variant_expiration --production
# Set nightly status to affected on newly filed regressions
python -m bugbot.rules.regression_new_set_nightly_affected --production
# Suggest increasing the severity of performance-impacting bugs
python -m bugbot.rules.severity_high_performance_impact --production
# Request potential missing info when a bug is moved to Core::Performance
python -m bugbot.rules.moved_to_performance --production
source ./scripts/cron_common_end.sh