├── .coveragerc ├── .github ├── dependabot.yml ├── mergify.yml ├── pull_request_template.md └── workflows │ └── wiki.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── .taskcluster.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.rst ├── alembic.ini ├── bugbot ├── __init__.py ├── auto_mock.py ├── bug │ ├── __init__.py │ └── analyzer.py ├── bugbug_utils.py ├── bzcleaner.py ├── cache.py ├── component_triagers.py ├── components.py ├── config.py ├── constants.py ├── crash │ ├── __init__.py │ ├── analyzer.py │ └── socorro_util.py ├── db.py ├── db_migrations │ ├── __init__.py │ ├── env.py │ ├── script.py.mako │ └── versions │ │ └── ac0a01dcb3a9_init_the_database.py ├── erroneous_bzmail.py ├── escalation.py ├── gcp.py ├── history.py ├── iam.py ├── log.py ├── mail.py ├── multi_autofixers.py ├── multinaggers.py ├── nag_me.py ├── people.py ├── round_robin.py ├── round_robin_calendar.py ├── round_robin_fallback.py ├── rules │ ├── __init__.py │ ├── accessibilitybug.py │ ├── affected_flag_confirm.py │ ├── assignee_no_login.py │ ├── bisection_without_regressed_by.py │ ├── close_intermittents.py │ ├── closed_dupeme.py │ ├── code_freeze_week.py │ ├── component.py │ ├── copy_duplicate_info.py │ ├── crash_signature_confirm.py │ ├── crash_small_volume.py │ ├── defect_with_please_or_enable.py │ ├── defectenhancementtask.py │ ├── dupeme_whiteboard_keyword.py │ ├── duplicate_copy_metadata.py │ ├── feature_but_type_defect.py │ ├── feature_regression.py │ ├── file_crash_bug.py │ ├── fuzz_blockers.py │ ├── good_first_bug_unassign_inactive.py │ ├── has_str_no_hasstr.py │ ├── inactive_ni_pending.py │ ├── inactive_reviewer.py │ ├── leave_open.py │ ├── leave_open_no_activity.py │ ├── leave_open_sec.py │ ├── meta_defect.py │ ├── meta_no_deps_no_activity.py │ ├── meta_summary_missing.py │ ├── missed_landing_comment.py │ ├── missed_uplifts.py │ ├── missing_beta_status.py │ ├── moved_to_performance.py │ ├── multi_nag.py │ ├── multifix_regression.py │ ├── needinfo_regression_author.py │ ├── ni_from_manager.py │ ├── nightly_reopened.py │ ├── no_assignee.py │ ├── no_crashes.py │ ├── not_landed.py │ ├── one_two_word_summary.py │ ├── patch_closed_bug.py │ ├── pdfjs_update.py │ ├── perfalert_inactive_regression.py │ ├── perfalert_resolved_regression.py │ ├── performancebug.py │ ├── prod_comp_changed_with_priority.py │ ├── regression.py │ ├── regression_but_type_enhancement_task.py │ ├── regression_new_set_nightly_affected.py │ ├── regression_set_status_flags.py │ ├── regression_without_regressed_by.py │ ├── reminder.py │ ├── reporter_with_ni.py │ ├── security_unhide_dups.py │ ├── several_cc.py │ ├── several_comments.py │ ├── several_dups.py │ ├── several_see_also.py │ ├── several_votes.py │ ├── severity_high_compat_priority.py │ ├── severity_high_performance_impact.py │ ├── severity_high_security.py │ ├── severity_higher_dups.py │ ├── severity_inconsistency.py │ ├── severity_underestimated.py │ ├── spambug.py │ ├── stalled.py │ ├── stepstoreproduce.py │ ├── summary_meta_missing.py │ ├── survey_sec_bugs.py │ ├── telemetry_expiry_tracking_autoapproval.py │ ├── telemetryalert_inactive_regression.py │ ├── to_triage.py │ ├── topcrash_highlight.py │ ├── topcrash_notify.py │ ├── tracked_attention.py │ ├── tracked_needinfo.py │ ├── tracking.py │ ├── triage_owner_rotations.py │ ├── triage_rotations_outdated.py │ ├── unlanded.py │ ├── untriage_important_sev.py │ ├── uplift_beta.py │ ├── vacant_team_manager.py │ ├── vacant_triage_owner.py │ ├── variant_expiration.py │ ├── warn_regressed_by.py │ ├── web_platform_features.py │ ├── webcompat_platform_without_keyword.py │ ├── webcompat_score.py │ ├── webcompat_sightline.py │ └── workflow │ │ ├── __init__.py │ │ ├── multi_nag.py │ │ ├── no_severity_nag.py │ │ ├── no_severity_ni.py │ │ ├── p1.py │ │ ├── p1_no_activity.py │ │ ├── p1_no_assignee.py │ │ ├── p2.py │ │ ├── p2_merge_day.py │ │ ├── p2_no_activity.py │ │ └── p3_p4_p5.py ├── severity.py ├── team_managers.py ├── topcrash.py ├── user_activity.py ├── utils.py └── webcompat_priority.py ├── configs ├── rm.json ├── rules.json └── team_managers.json ├── db └── lock ├── extra └── pdfjs_tags.json ├── pyproject.toml ├── scripts ├── check_rules_on_wiki.py ├── cron_common_end.sh ├── cron_common_start.sh ├── cron_run_daily.sh ├── cron_run_hourly.sh └── cron_run_weekdays.sh ├── templates ├── aborted_preamble.html ├── accessibilitybug.html ├── affected_flag_confirm.html ├── assignee_no_login.html ├── assignee_no_login_needinfo.txt ├── bisection_without_regressed_by.html ├── bisection_without_regressed_by_needinfo.txt ├── close_intermittents.html ├── closed_dupeme.html ├── code_freeze_week.html ├── common.html ├── component.html ├── copy_duplicate_info.html ├── crash_signature_confirm.html ├── crash_small_volume.html ├── defect_with_please_or_enable.html ├── defectenhancementtask.html ├── dupeme_whiteboard_keyword.html ├── duplicate_copy_metadata.html ├── erroneous_bzmail_email.html ├── feature_but_type_defect.html ├── feature_regression.html ├── file_crash_bug.html ├── file_crash_bug_description.md.jinja ├── fuzz_blockers.html ├── fuzz_blockers_needinfo.txt ├── good_first_bug_unassign_inactive.html ├── has_str_no_hasstr.html ├── inactive_ni_pending.html ├── inactive_reviewer.html ├── inactive_reviewer_needinfo.txt ├── leave_open.html ├── leave_open_no_activity.html ├── leave_open_no_activity_needinfo.txt ├── leave_open_sec.html ├── meta_defect.html ├── meta_no_deps_no_activity.html ├── meta_no_deps_no_activity_needinfo.txt ├── meta_summary_missing.html ├── missed_landing_comment.html ├── missed_uplifts.html ├── missing_beta_status.html ├── moved_to_performance.html ├── moved_to_performance_needinfo.txt ├── needinfo_regression_author.html ├── needinfo_regression_author_needinfo.txt ├── ni_from_manager.html ├── ni_from_manager_nag.html ├── ni_triage_owner.html ├── ni_triage_owner_needinfo.txt ├── nightly_reopened.html ├── no_assignee.html ├── no_crashes.html ├── no_severity_nag.html ├── no_severity_ni.html ├── no_severity_ni_needinfo.txt ├── not_landed.html ├── not_landed_needinfo.txt ├── one_two_word_summary.html ├── p1_no_activity.html ├── p1_no_assignee.html ├── p1_no_assignee_needinfo.txt ├── p2_merge_day.html ├── p2_no_activity.html ├── p3_p4_p5.html ├── patch_closed_bug.html ├── pdfjs_update.html ├── perfalert_inactive_regression.html ├── perfalert_inactive_regression_needinfo.txt ├── perfalert_resolved_regression.html ├── perfalert_resolved_regression_needinfo.txt ├── performancebug.html ├── prod_comp_changed_with_priority.html ├── regressed_by_no_has_regression_range.html ├── regression.html ├── regression_but_type_enhancement_task.html ├── regression_new_set_nightly_affected.html ├── regression_set_status_flags.html ├── regression_without_regressed_by.html ├── regression_without_regressed_by_needinfo.txt ├── regressor.html ├── reminder.html ├── reminder_needinfo.txt ├── reporter_with_ni.html ├── round_robin_fallback_email.html ├── security_unhide_dups.html ├── several_cc.html ├── several_comments.html ├── several_dups.html ├── several_see_also.html ├── several_votes.html ├── severity_high_compat_priority.html ├── severity_high_compat_priority_needinfo.txt ├── severity_high_performance_impact.html ├── severity_high_performance_impact_needinfo.txt ├── severity_high_security.html ├── severity_high_security_needinfo.txt ├── severity_higher_dups.html ├── severity_higher_dups_needinfo.txt ├── severity_inconsistency.html ├── severity_inconsistency_needinfo.txt ├── severity_migration.html ├── severity_underestimated.html ├── severity_underestimated_needinfo.txt ├── spambug.html ├── stalled.html ├── stepstoreproduce.html ├── summary_meta_missing.html ├── survey_sec_bugs.html ├── telemetryalert_inactive_regression.html ├── telemetryalert_inactive_regression_needinfo.txt ├── to_triage.html ├── topcrash_highlight.html ├── topcrash_notify.html ├── topcrash_notify_nag.html ├── tracked_attention.html ├── tracked_attention_needinfo.txt ├── tracked_needinfo.html ├── tracked_needinfo_nag.html ├── tracking.html ├── tracking_nag.html ├── triage_owner_rotations.html ├── triage_rotations_outdated.html ├── unaffected-affected-no-reg.html ├── unlanded.html ├── untriage_important_sev.html ├── uplift_beta.html ├── uplift_beta_needinfo.txt ├── vacant_team_manager.html ├── vacant_triage_owner.html ├── variant_expiration.html ├── variant_expiration_nag.html ├── variant_expiration_needinfo.txt ├── warn_regressed_by.html ├── web_platform_features.html ├── webcompat_platform_without_keyword.html ├── webcompat_score.html └── webcompat_sightline.html ├── tests ├── __init__.py ├── data │ ├── DOM_LWS_calendar.ics │ ├── Performance_Tools_calendar.ics │ ├── calendar.ics │ ├── calendar_default.json │ ├── calendar_recurring.ics │ ├── calendar_special.json │ └── db_history.json ├── mocks │ ├── https_bugzilla.mozilla.org │ │ └── rest │ │ │ └── user │ │ │ ├── GET_include_fields=can_login_include_fields=creation_time_include_fields=id_include_fields=last_activity_6ab2aafe037af940ec0d7b4fccbc24cb.json │ │ │ ├── GET_include_fields=can_login_include_fields=creation_time_include_fields=last_activity_time_include_fiel_0fed22d912a794760085e714c58db05a.json │ │ │ ├── GET_include_fields=can_login_include_fields=creation_time_include_fields=last_activity_time_include_fiel_561d80df788e2b565356201ffc83bbeb.json │ │ │ └── GET_include_fields=can_login_include_fields=creation_time_include_fields=last_activity_time_include_fiel_ac510acb1e109087e2f8cc7dc76970ca.json │ └── https_crash-stats.mozilla.org │ │ └── api │ │ └── SuperSearch │ │ └── GET__facets_size=1000__results_number=0_signature==IPCError-browser | ShutDownKill_signature==OOM | small_signature=^EMPTY: .json ├── rules │ └── test_perfalert_resolved_regression.py ├── test_bug_analyzer.py ├── test_bzcleaner.py ├── test_cache.py ├── test_calendar.py ├── test_db.py ├── test_duplicate_copy_metadata.py ├── test_email_no_assignee.py ├── test_escalation.py ├── test_mail.py ├── test_multi_autofixers.py ├── test_new_utils.py ├── test_regression_set_status_flags.py ├── test_round_robin.py ├── test_severity.py ├── test_topcrash.py ├── test_user_activity.py └── test_webcompat_priority.py └── uv.lock /.coveragerc: -------------------------------------------------------------------------------- 1 | [report] 2 | omit = 3 | */tests/* 4 | 5 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/.github/mergify.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/wiki.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/.github/workflows/wiki.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /.taskcluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/.taskcluster.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/README.rst -------------------------------------------------------------------------------- /alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/alembic.ini -------------------------------------------------------------------------------- /bugbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/__init__.py -------------------------------------------------------------------------------- /bugbot/auto_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/auto_mock.py -------------------------------------------------------------------------------- /bugbot/bug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugbot/bug/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/bug/analyzer.py -------------------------------------------------------------------------------- /bugbot/bugbug_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/bugbug_utils.py -------------------------------------------------------------------------------- /bugbot/bzcleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/bzcleaner.py -------------------------------------------------------------------------------- /bugbot/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/cache.py -------------------------------------------------------------------------------- /bugbot/component_triagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/component_triagers.py -------------------------------------------------------------------------------- /bugbot/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/components.py -------------------------------------------------------------------------------- /bugbot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/config.py -------------------------------------------------------------------------------- /bugbot/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/constants.py -------------------------------------------------------------------------------- /bugbot/crash/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugbot/crash/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/crash/analyzer.py -------------------------------------------------------------------------------- /bugbot/crash/socorro_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/crash/socorro_util.py -------------------------------------------------------------------------------- /bugbot/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/db.py -------------------------------------------------------------------------------- /bugbot/db_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugbot/db_migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/db_migrations/env.py -------------------------------------------------------------------------------- /bugbot/db_migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/db_migrations/script.py.mako -------------------------------------------------------------------------------- /bugbot/db_migrations/versions/ac0a01dcb3a9_init_the_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/db_migrations/versions/ac0a01dcb3a9_init_the_database.py -------------------------------------------------------------------------------- /bugbot/erroneous_bzmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/erroneous_bzmail.py -------------------------------------------------------------------------------- /bugbot/escalation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/escalation.py -------------------------------------------------------------------------------- /bugbot/gcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/gcp.py -------------------------------------------------------------------------------- /bugbot/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/history.py -------------------------------------------------------------------------------- /bugbot/iam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/iam.py -------------------------------------------------------------------------------- /bugbot/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/log.py -------------------------------------------------------------------------------- /bugbot/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/mail.py -------------------------------------------------------------------------------- /bugbot/multi_autofixers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/multi_autofixers.py -------------------------------------------------------------------------------- /bugbot/multinaggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/multinaggers.py -------------------------------------------------------------------------------- /bugbot/nag_me.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/nag_me.py -------------------------------------------------------------------------------- /bugbot/people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/people.py -------------------------------------------------------------------------------- /bugbot/round_robin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/round_robin.py -------------------------------------------------------------------------------- /bugbot/round_robin_calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/round_robin_calendar.py -------------------------------------------------------------------------------- /bugbot/round_robin_fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/round_robin_fallback.py -------------------------------------------------------------------------------- /bugbot/rules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugbot/rules/accessibilitybug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/accessibilitybug.py -------------------------------------------------------------------------------- /bugbot/rules/affected_flag_confirm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/affected_flag_confirm.py -------------------------------------------------------------------------------- /bugbot/rules/assignee_no_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/assignee_no_login.py -------------------------------------------------------------------------------- /bugbot/rules/bisection_without_regressed_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/bisection_without_regressed_by.py -------------------------------------------------------------------------------- /bugbot/rules/close_intermittents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/close_intermittents.py -------------------------------------------------------------------------------- /bugbot/rules/closed_dupeme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/closed_dupeme.py -------------------------------------------------------------------------------- /bugbot/rules/code_freeze_week.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/code_freeze_week.py -------------------------------------------------------------------------------- /bugbot/rules/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/component.py -------------------------------------------------------------------------------- /bugbot/rules/copy_duplicate_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/copy_duplicate_info.py -------------------------------------------------------------------------------- /bugbot/rules/crash_signature_confirm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/crash_signature_confirm.py -------------------------------------------------------------------------------- /bugbot/rules/crash_small_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/crash_small_volume.py -------------------------------------------------------------------------------- /bugbot/rules/defect_with_please_or_enable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/defect_with_please_or_enable.py -------------------------------------------------------------------------------- /bugbot/rules/defectenhancementtask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/defectenhancementtask.py -------------------------------------------------------------------------------- /bugbot/rules/dupeme_whiteboard_keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/dupeme_whiteboard_keyword.py -------------------------------------------------------------------------------- /bugbot/rules/duplicate_copy_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/duplicate_copy_metadata.py -------------------------------------------------------------------------------- /bugbot/rules/feature_but_type_defect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/feature_but_type_defect.py -------------------------------------------------------------------------------- /bugbot/rules/feature_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/feature_regression.py -------------------------------------------------------------------------------- /bugbot/rules/file_crash_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/file_crash_bug.py -------------------------------------------------------------------------------- /bugbot/rules/fuzz_blockers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/fuzz_blockers.py -------------------------------------------------------------------------------- /bugbot/rules/good_first_bug_unassign_inactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/good_first_bug_unassign_inactive.py -------------------------------------------------------------------------------- /bugbot/rules/has_str_no_hasstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/has_str_no_hasstr.py -------------------------------------------------------------------------------- /bugbot/rules/inactive_ni_pending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/inactive_ni_pending.py -------------------------------------------------------------------------------- /bugbot/rules/inactive_reviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/inactive_reviewer.py -------------------------------------------------------------------------------- /bugbot/rules/leave_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/leave_open.py -------------------------------------------------------------------------------- /bugbot/rules/leave_open_no_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/leave_open_no_activity.py -------------------------------------------------------------------------------- /bugbot/rules/leave_open_sec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/leave_open_sec.py -------------------------------------------------------------------------------- /bugbot/rules/meta_defect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/meta_defect.py -------------------------------------------------------------------------------- /bugbot/rules/meta_no_deps_no_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/meta_no_deps_no_activity.py -------------------------------------------------------------------------------- /bugbot/rules/meta_summary_missing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/meta_summary_missing.py -------------------------------------------------------------------------------- /bugbot/rules/missed_landing_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/missed_landing_comment.py -------------------------------------------------------------------------------- /bugbot/rules/missed_uplifts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/missed_uplifts.py -------------------------------------------------------------------------------- /bugbot/rules/missing_beta_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/missing_beta_status.py -------------------------------------------------------------------------------- /bugbot/rules/moved_to_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/moved_to_performance.py -------------------------------------------------------------------------------- /bugbot/rules/multi_nag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/multi_nag.py -------------------------------------------------------------------------------- /bugbot/rules/multifix_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/multifix_regression.py -------------------------------------------------------------------------------- /bugbot/rules/needinfo_regression_author.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/needinfo_regression_author.py -------------------------------------------------------------------------------- /bugbot/rules/ni_from_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/ni_from_manager.py -------------------------------------------------------------------------------- /bugbot/rules/nightly_reopened.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/nightly_reopened.py -------------------------------------------------------------------------------- /bugbot/rules/no_assignee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/no_assignee.py -------------------------------------------------------------------------------- /bugbot/rules/no_crashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/no_crashes.py -------------------------------------------------------------------------------- /bugbot/rules/not_landed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/not_landed.py -------------------------------------------------------------------------------- /bugbot/rules/one_two_word_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/one_two_word_summary.py -------------------------------------------------------------------------------- /bugbot/rules/patch_closed_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/patch_closed_bug.py -------------------------------------------------------------------------------- /bugbot/rules/pdfjs_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/pdfjs_update.py -------------------------------------------------------------------------------- /bugbot/rules/perfalert_inactive_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/perfalert_inactive_regression.py -------------------------------------------------------------------------------- /bugbot/rules/perfalert_resolved_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/perfalert_resolved_regression.py -------------------------------------------------------------------------------- /bugbot/rules/performancebug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/performancebug.py -------------------------------------------------------------------------------- /bugbot/rules/prod_comp_changed_with_priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/prod_comp_changed_with_priority.py -------------------------------------------------------------------------------- /bugbot/rules/regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/regression.py -------------------------------------------------------------------------------- /bugbot/rules/regression_but_type_enhancement_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/regression_but_type_enhancement_task.py -------------------------------------------------------------------------------- /bugbot/rules/regression_new_set_nightly_affected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/regression_new_set_nightly_affected.py -------------------------------------------------------------------------------- /bugbot/rules/regression_set_status_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/regression_set_status_flags.py -------------------------------------------------------------------------------- /bugbot/rules/regression_without_regressed_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/regression_without_regressed_by.py -------------------------------------------------------------------------------- /bugbot/rules/reminder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/reminder.py -------------------------------------------------------------------------------- /bugbot/rules/reporter_with_ni.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/reporter_with_ni.py -------------------------------------------------------------------------------- /bugbot/rules/security_unhide_dups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/security_unhide_dups.py -------------------------------------------------------------------------------- /bugbot/rules/several_cc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/several_cc.py -------------------------------------------------------------------------------- /bugbot/rules/several_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/several_comments.py -------------------------------------------------------------------------------- /bugbot/rules/several_dups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/several_dups.py -------------------------------------------------------------------------------- /bugbot/rules/several_see_also.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/several_see_also.py -------------------------------------------------------------------------------- /bugbot/rules/several_votes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/several_votes.py -------------------------------------------------------------------------------- /bugbot/rules/severity_high_compat_priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/severity_high_compat_priority.py -------------------------------------------------------------------------------- /bugbot/rules/severity_high_performance_impact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/severity_high_performance_impact.py -------------------------------------------------------------------------------- /bugbot/rules/severity_high_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/severity_high_security.py -------------------------------------------------------------------------------- /bugbot/rules/severity_higher_dups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/severity_higher_dups.py -------------------------------------------------------------------------------- /bugbot/rules/severity_inconsistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/severity_inconsistency.py -------------------------------------------------------------------------------- /bugbot/rules/severity_underestimated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/severity_underestimated.py -------------------------------------------------------------------------------- /bugbot/rules/spambug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/spambug.py -------------------------------------------------------------------------------- /bugbot/rules/stalled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/stalled.py -------------------------------------------------------------------------------- /bugbot/rules/stepstoreproduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/stepstoreproduce.py -------------------------------------------------------------------------------- /bugbot/rules/summary_meta_missing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/summary_meta_missing.py -------------------------------------------------------------------------------- /bugbot/rules/survey_sec_bugs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/survey_sec_bugs.py -------------------------------------------------------------------------------- /bugbot/rules/telemetry_expiry_tracking_autoapproval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/telemetry_expiry_tracking_autoapproval.py -------------------------------------------------------------------------------- /bugbot/rules/telemetryalert_inactive_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/telemetryalert_inactive_regression.py -------------------------------------------------------------------------------- /bugbot/rules/to_triage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/to_triage.py -------------------------------------------------------------------------------- /bugbot/rules/topcrash_highlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/topcrash_highlight.py -------------------------------------------------------------------------------- /bugbot/rules/topcrash_notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/topcrash_notify.py -------------------------------------------------------------------------------- /bugbot/rules/tracked_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/tracked_attention.py -------------------------------------------------------------------------------- /bugbot/rules/tracked_needinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/tracked_needinfo.py -------------------------------------------------------------------------------- /bugbot/rules/tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/tracking.py -------------------------------------------------------------------------------- /bugbot/rules/triage_owner_rotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/triage_owner_rotations.py -------------------------------------------------------------------------------- /bugbot/rules/triage_rotations_outdated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/triage_rotations_outdated.py -------------------------------------------------------------------------------- /bugbot/rules/unlanded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/unlanded.py -------------------------------------------------------------------------------- /bugbot/rules/untriage_important_sev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/untriage_important_sev.py -------------------------------------------------------------------------------- /bugbot/rules/uplift_beta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/uplift_beta.py -------------------------------------------------------------------------------- /bugbot/rules/vacant_team_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/vacant_team_manager.py -------------------------------------------------------------------------------- /bugbot/rules/vacant_triage_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/vacant_triage_owner.py -------------------------------------------------------------------------------- /bugbot/rules/variant_expiration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/variant_expiration.py -------------------------------------------------------------------------------- /bugbot/rules/warn_regressed_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/warn_regressed_by.py -------------------------------------------------------------------------------- /bugbot/rules/web_platform_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/web_platform_features.py -------------------------------------------------------------------------------- /bugbot/rules/webcompat_platform_without_keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/webcompat_platform_without_keyword.py -------------------------------------------------------------------------------- /bugbot/rules/webcompat_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/webcompat_score.py -------------------------------------------------------------------------------- /bugbot/rules/webcompat_sightline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/webcompat_sightline.py -------------------------------------------------------------------------------- /bugbot/rules/workflow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bugbot/rules/workflow/multi_nag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/workflow/multi_nag.py -------------------------------------------------------------------------------- /bugbot/rules/workflow/no_severity_nag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/workflow/no_severity_nag.py -------------------------------------------------------------------------------- /bugbot/rules/workflow/no_severity_ni.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/workflow/no_severity_ni.py -------------------------------------------------------------------------------- /bugbot/rules/workflow/p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/workflow/p1.py -------------------------------------------------------------------------------- /bugbot/rules/workflow/p1_no_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/workflow/p1_no_activity.py -------------------------------------------------------------------------------- /bugbot/rules/workflow/p1_no_assignee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/workflow/p1_no_assignee.py -------------------------------------------------------------------------------- /bugbot/rules/workflow/p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/workflow/p2.py -------------------------------------------------------------------------------- /bugbot/rules/workflow/p2_merge_day.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/workflow/p2_merge_day.py -------------------------------------------------------------------------------- /bugbot/rules/workflow/p2_no_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/workflow/p2_no_activity.py -------------------------------------------------------------------------------- /bugbot/rules/workflow/p3_p4_p5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/rules/workflow/p3_p4_p5.py -------------------------------------------------------------------------------- /bugbot/severity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/severity.py -------------------------------------------------------------------------------- /bugbot/team_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/team_managers.py -------------------------------------------------------------------------------- /bugbot/topcrash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/topcrash.py -------------------------------------------------------------------------------- /bugbot/user_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/user_activity.py -------------------------------------------------------------------------------- /bugbot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/utils.py -------------------------------------------------------------------------------- /bugbot/webcompat_priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/bugbot/webcompat_priority.py -------------------------------------------------------------------------------- /configs/rm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/configs/rm.json -------------------------------------------------------------------------------- /configs/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/configs/rules.json -------------------------------------------------------------------------------- /configs/team_managers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/configs/team_managers.json -------------------------------------------------------------------------------- /db/lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra/pdfjs_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/extra/pdfjs_tags.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/check_rules_on_wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/scripts/check_rules_on_wiki.py -------------------------------------------------------------------------------- /scripts/cron_common_end.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/scripts/cron_common_end.sh -------------------------------------------------------------------------------- /scripts/cron_common_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/scripts/cron_common_start.sh -------------------------------------------------------------------------------- /scripts/cron_run_daily.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/scripts/cron_run_daily.sh -------------------------------------------------------------------------------- /scripts/cron_run_hourly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/scripts/cron_run_hourly.sh -------------------------------------------------------------------------------- /scripts/cron_run_weekdays.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/scripts/cron_run_weekdays.sh -------------------------------------------------------------------------------- /templates/aborted_preamble.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/aborted_preamble.html -------------------------------------------------------------------------------- /templates/accessibilitybug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/accessibilitybug.html -------------------------------------------------------------------------------- /templates/affected_flag_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/affected_flag_confirm.html -------------------------------------------------------------------------------- /templates/assignee_no_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/assignee_no_login.html -------------------------------------------------------------------------------- /templates/assignee_no_login_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/assignee_no_login_needinfo.txt -------------------------------------------------------------------------------- /templates/bisection_without_regressed_by.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/bisection_without_regressed_by.html -------------------------------------------------------------------------------- /templates/bisection_without_regressed_by_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/bisection_without_regressed_by_needinfo.txt -------------------------------------------------------------------------------- /templates/close_intermittents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/close_intermittents.html -------------------------------------------------------------------------------- /templates/closed_dupeme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/closed_dupeme.html -------------------------------------------------------------------------------- /templates/code_freeze_week.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/code_freeze_week.html -------------------------------------------------------------------------------- /templates/common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/common.html -------------------------------------------------------------------------------- /templates/component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/component.html -------------------------------------------------------------------------------- /templates/copy_duplicate_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/copy_duplicate_info.html -------------------------------------------------------------------------------- /templates/crash_signature_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/crash_signature_confirm.html -------------------------------------------------------------------------------- /templates/crash_small_volume.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/crash_small_volume.html -------------------------------------------------------------------------------- /templates/defect_with_please_or_enable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/defect_with_please_or_enable.html -------------------------------------------------------------------------------- /templates/defectenhancementtask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/defectenhancementtask.html -------------------------------------------------------------------------------- /templates/dupeme_whiteboard_keyword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/dupeme_whiteboard_keyword.html -------------------------------------------------------------------------------- /templates/duplicate_copy_metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/duplicate_copy_metadata.html -------------------------------------------------------------------------------- /templates/erroneous_bzmail_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/erroneous_bzmail_email.html -------------------------------------------------------------------------------- /templates/feature_but_type_defect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/feature_but_type_defect.html -------------------------------------------------------------------------------- /templates/feature_regression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/feature_regression.html -------------------------------------------------------------------------------- /templates/file_crash_bug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/file_crash_bug.html -------------------------------------------------------------------------------- /templates/file_crash_bug_description.md.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/file_crash_bug_description.md.jinja -------------------------------------------------------------------------------- /templates/fuzz_blockers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/fuzz_blockers.html -------------------------------------------------------------------------------- /templates/fuzz_blockers_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/fuzz_blockers_needinfo.txt -------------------------------------------------------------------------------- /templates/good_first_bug_unassign_inactive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/good_first_bug_unassign_inactive.html -------------------------------------------------------------------------------- /templates/has_str_no_hasstr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/has_str_no_hasstr.html -------------------------------------------------------------------------------- /templates/inactive_ni_pending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/inactive_ni_pending.html -------------------------------------------------------------------------------- /templates/inactive_reviewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/inactive_reviewer.html -------------------------------------------------------------------------------- /templates/inactive_reviewer_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/inactive_reviewer_needinfo.txt -------------------------------------------------------------------------------- /templates/leave_open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/leave_open.html -------------------------------------------------------------------------------- /templates/leave_open_no_activity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/leave_open_no_activity.html -------------------------------------------------------------------------------- /templates/leave_open_no_activity_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/leave_open_no_activity_needinfo.txt -------------------------------------------------------------------------------- /templates/leave_open_sec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/leave_open_sec.html -------------------------------------------------------------------------------- /templates/meta_defect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/meta_defect.html -------------------------------------------------------------------------------- /templates/meta_no_deps_no_activity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/meta_no_deps_no_activity.html -------------------------------------------------------------------------------- /templates/meta_no_deps_no_activity_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/meta_no_deps_no_activity_needinfo.txt -------------------------------------------------------------------------------- /templates/meta_summary_missing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/meta_summary_missing.html -------------------------------------------------------------------------------- /templates/missed_landing_comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/missed_landing_comment.html -------------------------------------------------------------------------------- /templates/missed_uplifts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/missed_uplifts.html -------------------------------------------------------------------------------- /templates/missing_beta_status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/missing_beta_status.html -------------------------------------------------------------------------------- /templates/moved_to_performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/moved_to_performance.html -------------------------------------------------------------------------------- /templates/moved_to_performance_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/moved_to_performance_needinfo.txt -------------------------------------------------------------------------------- /templates/needinfo_regression_author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/needinfo_regression_author.html -------------------------------------------------------------------------------- /templates/needinfo_regression_author_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/needinfo_regression_author_needinfo.txt -------------------------------------------------------------------------------- /templates/ni_from_manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/ni_from_manager.html -------------------------------------------------------------------------------- /templates/ni_from_manager_nag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/ni_from_manager_nag.html -------------------------------------------------------------------------------- /templates/ni_triage_owner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/ni_triage_owner.html -------------------------------------------------------------------------------- /templates/ni_triage_owner_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/ni_triage_owner_needinfo.txt -------------------------------------------------------------------------------- /templates/nightly_reopened.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/nightly_reopened.html -------------------------------------------------------------------------------- /templates/no_assignee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/no_assignee.html -------------------------------------------------------------------------------- /templates/no_crashes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/no_crashes.html -------------------------------------------------------------------------------- /templates/no_severity_nag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/no_severity_nag.html -------------------------------------------------------------------------------- /templates/no_severity_ni.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/no_severity_ni.html -------------------------------------------------------------------------------- /templates/no_severity_ni_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/no_severity_ni_needinfo.txt -------------------------------------------------------------------------------- /templates/not_landed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/not_landed.html -------------------------------------------------------------------------------- /templates/not_landed_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/not_landed_needinfo.txt -------------------------------------------------------------------------------- /templates/one_two_word_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/one_two_word_summary.html -------------------------------------------------------------------------------- /templates/p1_no_activity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/p1_no_activity.html -------------------------------------------------------------------------------- /templates/p1_no_assignee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/p1_no_assignee.html -------------------------------------------------------------------------------- /templates/p1_no_assignee_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/p1_no_assignee_needinfo.txt -------------------------------------------------------------------------------- /templates/p2_merge_day.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/p2_merge_day.html -------------------------------------------------------------------------------- /templates/p2_no_activity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/p2_no_activity.html -------------------------------------------------------------------------------- /templates/p3_p4_p5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/p3_p4_p5.html -------------------------------------------------------------------------------- /templates/patch_closed_bug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/patch_closed_bug.html -------------------------------------------------------------------------------- /templates/pdfjs_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/pdfjs_update.html -------------------------------------------------------------------------------- /templates/perfalert_inactive_regression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/perfalert_inactive_regression.html -------------------------------------------------------------------------------- /templates/perfalert_inactive_regression_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/perfalert_inactive_regression_needinfo.txt -------------------------------------------------------------------------------- /templates/perfalert_resolved_regression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/perfalert_resolved_regression.html -------------------------------------------------------------------------------- /templates/perfalert_resolved_regression_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/perfalert_resolved_regression_needinfo.txt -------------------------------------------------------------------------------- /templates/performancebug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/performancebug.html -------------------------------------------------------------------------------- /templates/prod_comp_changed_with_priority.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/prod_comp_changed_with_priority.html -------------------------------------------------------------------------------- /templates/regressed_by_no_has_regression_range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/regressed_by_no_has_regression_range.html -------------------------------------------------------------------------------- /templates/regression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/regression.html -------------------------------------------------------------------------------- /templates/regression_but_type_enhancement_task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/regression_but_type_enhancement_task.html -------------------------------------------------------------------------------- /templates/regression_new_set_nightly_affected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/regression_new_set_nightly_affected.html -------------------------------------------------------------------------------- /templates/regression_set_status_flags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/regression_set_status_flags.html -------------------------------------------------------------------------------- /templates/regression_without_regressed_by.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/regression_without_regressed_by.html -------------------------------------------------------------------------------- /templates/regression_without_regressed_by_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/regression_without_regressed_by_needinfo.txt -------------------------------------------------------------------------------- /templates/regressor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/regressor.html -------------------------------------------------------------------------------- /templates/reminder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/reminder.html -------------------------------------------------------------------------------- /templates/reminder_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/reminder_needinfo.txt -------------------------------------------------------------------------------- /templates/reporter_with_ni.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/reporter_with_ni.html -------------------------------------------------------------------------------- /templates/round_robin_fallback_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/round_robin_fallback_email.html -------------------------------------------------------------------------------- /templates/security_unhide_dups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/security_unhide_dups.html -------------------------------------------------------------------------------- /templates/several_cc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/several_cc.html -------------------------------------------------------------------------------- /templates/several_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/several_comments.html -------------------------------------------------------------------------------- /templates/several_dups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/several_dups.html -------------------------------------------------------------------------------- /templates/several_see_also.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/several_see_also.html -------------------------------------------------------------------------------- /templates/several_votes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/several_votes.html -------------------------------------------------------------------------------- /templates/severity_high_compat_priority.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/severity_high_compat_priority.html -------------------------------------------------------------------------------- /templates/severity_high_compat_priority_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/severity_high_compat_priority_needinfo.txt -------------------------------------------------------------------------------- /templates/severity_high_performance_impact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/severity_high_performance_impact.html -------------------------------------------------------------------------------- /templates/severity_high_performance_impact_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/severity_high_performance_impact_needinfo.txt -------------------------------------------------------------------------------- /templates/severity_high_security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/severity_high_security.html -------------------------------------------------------------------------------- /templates/severity_high_security_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/severity_high_security_needinfo.txt -------------------------------------------------------------------------------- /templates/severity_higher_dups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/severity_higher_dups.html -------------------------------------------------------------------------------- /templates/severity_higher_dups_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/severity_higher_dups_needinfo.txt -------------------------------------------------------------------------------- /templates/severity_inconsistency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/severity_inconsistency.html -------------------------------------------------------------------------------- /templates/severity_inconsistency_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/severity_inconsistency_needinfo.txt -------------------------------------------------------------------------------- /templates/severity_migration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/severity_migration.html -------------------------------------------------------------------------------- /templates/severity_underestimated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/severity_underestimated.html -------------------------------------------------------------------------------- /templates/severity_underestimated_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/severity_underestimated_needinfo.txt -------------------------------------------------------------------------------- /templates/spambug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/spambug.html -------------------------------------------------------------------------------- /templates/stalled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/stalled.html -------------------------------------------------------------------------------- /templates/stepstoreproduce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/stepstoreproduce.html -------------------------------------------------------------------------------- /templates/summary_meta_missing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/summary_meta_missing.html -------------------------------------------------------------------------------- /templates/survey_sec_bugs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/survey_sec_bugs.html -------------------------------------------------------------------------------- /templates/telemetryalert_inactive_regression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/telemetryalert_inactive_regression.html -------------------------------------------------------------------------------- /templates/telemetryalert_inactive_regression_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/telemetryalert_inactive_regression_needinfo.txt -------------------------------------------------------------------------------- /templates/to_triage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/to_triage.html -------------------------------------------------------------------------------- /templates/topcrash_highlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/topcrash_highlight.html -------------------------------------------------------------------------------- /templates/topcrash_notify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/topcrash_notify.html -------------------------------------------------------------------------------- /templates/topcrash_notify_nag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/topcrash_notify_nag.html -------------------------------------------------------------------------------- /templates/tracked_attention.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/tracked_attention.html -------------------------------------------------------------------------------- /templates/tracked_attention_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/tracked_attention_needinfo.txt -------------------------------------------------------------------------------- /templates/tracked_needinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/tracked_needinfo.html -------------------------------------------------------------------------------- /templates/tracked_needinfo_nag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/tracked_needinfo_nag.html -------------------------------------------------------------------------------- /templates/tracking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/tracking.html -------------------------------------------------------------------------------- /templates/tracking_nag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/tracking_nag.html -------------------------------------------------------------------------------- /templates/triage_owner_rotations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/triage_owner_rotations.html -------------------------------------------------------------------------------- /templates/triage_rotations_outdated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/triage_rotations_outdated.html -------------------------------------------------------------------------------- /templates/unaffected-affected-no-reg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/unaffected-affected-no-reg.html -------------------------------------------------------------------------------- /templates/unlanded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/unlanded.html -------------------------------------------------------------------------------- /templates/untriage_important_sev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/untriage_important_sev.html -------------------------------------------------------------------------------- /templates/uplift_beta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/uplift_beta.html -------------------------------------------------------------------------------- /templates/uplift_beta_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/uplift_beta_needinfo.txt -------------------------------------------------------------------------------- /templates/vacant_team_manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/vacant_team_manager.html -------------------------------------------------------------------------------- /templates/vacant_triage_owner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/vacant_triage_owner.html -------------------------------------------------------------------------------- /templates/variant_expiration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/variant_expiration.html -------------------------------------------------------------------------------- /templates/variant_expiration_nag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/variant_expiration_nag.html -------------------------------------------------------------------------------- /templates/variant_expiration_needinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/variant_expiration_needinfo.txt -------------------------------------------------------------------------------- /templates/warn_regressed_by.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/warn_regressed_by.html -------------------------------------------------------------------------------- /templates/web_platform_features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/web_platform_features.html -------------------------------------------------------------------------------- /templates/webcompat_platform_without_keyword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/webcompat_platform_without_keyword.html -------------------------------------------------------------------------------- /templates/webcompat_score.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/webcompat_score.html -------------------------------------------------------------------------------- /templates/webcompat_sightline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/templates/webcompat_sightline.html -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/DOM_LWS_calendar.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/data/DOM_LWS_calendar.ics -------------------------------------------------------------------------------- /tests/data/Performance_Tools_calendar.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/data/Performance_Tools_calendar.ics -------------------------------------------------------------------------------- /tests/data/calendar.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/data/calendar.ics -------------------------------------------------------------------------------- /tests/data/calendar_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/data/calendar_default.json -------------------------------------------------------------------------------- /tests/data/calendar_recurring.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/data/calendar_recurring.ics -------------------------------------------------------------------------------- /tests/data/calendar_special.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/data/calendar_special.json -------------------------------------------------------------------------------- /tests/data/db_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/data/db_history.json -------------------------------------------------------------------------------- /tests/mocks/https_bugzilla.mozilla.org/rest/user/GET_include_fields=can_login_include_fields=creation_time_include_fields=id_include_fields=last_activity_6ab2aafe037af940ec0d7b4fccbc24cb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/mocks/https_bugzilla.mozilla.org/rest/user/GET_include_fields=can_login_include_fields=creation_time_include_fields=id_include_fields=last_activity_6ab2aafe037af940ec0d7b4fccbc24cb.json -------------------------------------------------------------------------------- /tests/mocks/https_bugzilla.mozilla.org/rest/user/GET_include_fields=can_login_include_fields=creation_time_include_fields=last_activity_time_include_fiel_0fed22d912a794760085e714c58db05a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/mocks/https_bugzilla.mozilla.org/rest/user/GET_include_fields=can_login_include_fields=creation_time_include_fields=last_activity_time_include_fiel_0fed22d912a794760085e714c58db05a.json -------------------------------------------------------------------------------- /tests/mocks/https_bugzilla.mozilla.org/rest/user/GET_include_fields=can_login_include_fields=creation_time_include_fields=last_activity_time_include_fiel_561d80df788e2b565356201ffc83bbeb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/mocks/https_bugzilla.mozilla.org/rest/user/GET_include_fields=can_login_include_fields=creation_time_include_fields=last_activity_time_include_fiel_561d80df788e2b565356201ffc83bbeb.json -------------------------------------------------------------------------------- /tests/mocks/https_bugzilla.mozilla.org/rest/user/GET_include_fields=can_login_include_fields=creation_time_include_fields=last_activity_time_include_fiel_ac510acb1e109087e2f8cc7dc76970ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/mocks/https_bugzilla.mozilla.org/rest/user/GET_include_fields=can_login_include_fields=creation_time_include_fields=last_activity_time_include_fiel_ac510acb1e109087e2f8cc7dc76970ca.json -------------------------------------------------------------------------------- /tests/mocks/https_crash-stats.mozilla.org/api/SuperSearch/GET__facets_size=1000__results_number=0_signature==IPCError-browser | ShutDownKill_signature==OOM | small_signature=^EMPTY: .json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/mocks/https_crash-stats.mozilla.org/api/SuperSearch/GET__facets_size=1000__results_number=0_signature==IPCError-browser | ShutDownKill_signature==OOM | small_signature=^EMPTY: .json -------------------------------------------------------------------------------- /tests/rules/test_perfalert_resolved_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/rules/test_perfalert_resolved_regression.py -------------------------------------------------------------------------------- /tests/test_bug_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/test_bug_analyzer.py -------------------------------------------------------------------------------- /tests/test_bzcleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/test_bzcleaner.py -------------------------------------------------------------------------------- /tests/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/test_cache.py -------------------------------------------------------------------------------- /tests/test_calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/test_calendar.py -------------------------------------------------------------------------------- /tests/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/test_db.py -------------------------------------------------------------------------------- /tests/test_duplicate_copy_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/test_duplicate_copy_metadata.py -------------------------------------------------------------------------------- /tests/test_email_no_assignee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/test_email_no_assignee.py -------------------------------------------------------------------------------- /tests/test_escalation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/test_escalation.py -------------------------------------------------------------------------------- /tests/test_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/test_mail.py -------------------------------------------------------------------------------- /tests/test_multi_autofixers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/test_multi_autofixers.py -------------------------------------------------------------------------------- /tests/test_new_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/test_new_utils.py -------------------------------------------------------------------------------- /tests/test_regression_set_status_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/test_regression_set_status_flags.py -------------------------------------------------------------------------------- /tests/test_round_robin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/test_round_robin.py -------------------------------------------------------------------------------- /tests/test_severity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/test_severity.py -------------------------------------------------------------------------------- /tests/test_topcrash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/test_topcrash.py -------------------------------------------------------------------------------- /tests/test_user_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/test_user_activity.py -------------------------------------------------------------------------------- /tests/test_webcompat_priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/tests/test_webcompat_priority.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/bugbot/HEAD/uv.lock --------------------------------------------------------------------------------