A Mozilla release management tool to send reminders to Firefox developers and improve Bugzilla metadata
Перейти к файлу
Adarsh Anand 333ec164ba
Switch to Taskcluster (#1038)
Fixes #1034
2021-01-04 10:46:15 +01:00
.github Create Dependabot config file (#991) 2020-07-14 18:40:57 +02:00
auto_nag Add glob to the receivers of the spambug notifications (#1031) 2020-12-10 18:45:04 +01:00
db Add a db to store the different actions the bot made (#542) 2019-04-16 11:08:33 +02:00
templates Set status flags for regressions in ESR (#969) 2020-05-26 21:30:39 +02:00
.coveragerc Better automation of the tests in travis + add code coverage 2015-10-22 10:01:52 +02:00
.flake8 Exclude some directories from flake8 checks, and disable line length rule (#720) 2019-06-11 18:30:15 +02:00
.gitignore Migrate to python3 + cleanup (#602) 2019-05-21 14:54:15 +02:00
.isort.cfg Set isort line_length to the same value as in black 2020-04-29 14:31:28 +02:00
.mergify.yml Switch to Taskcluster (#1038) 2021-01-04 10:46:15 +01:00
.pre-commit-config.yaml Don't force a specific minor version of Python for pre-commit 2020-10-04 12:58:24 +02:00
.taskcluster.yml Switch to Taskcluster (#1038) 2021-01-04 10:46:15 +01:00
CODE_OF_CONDUCT.md Use black and add some pre-commit checks (#719) 2019-06-11 16:22:03 +02:00
LICENSE Update of the license file (#700) 2019-06-03 10:23:52 +02:00
README.rst Switch to Taskcluster (#1038) 2021-01-04 10:46:15 +01:00
alembic.ini Add a db to store the different actions the bot made (#542) 2019-04-16 11:08:33 +02:00
requirements-dev.txt Bump coverage from 5.1 to 5.3 2020-10-05 18:03:28 +02:00
requirements-test.txt Bump coveralls from 2.1.2 to 2.2.0 (#1027) 2020-11-26 10:32:33 +01:00
requirements.txt Fix bugs related to icalevents update and organization changes (#1024) 2020-11-12 12:51:00 +01:00
run_close_intermittents.sh Fix chmod on run_close_intermittents.sh (#902) 2020-02-20 15:49:48 +01:00
run_code_freeze_week.sh [code-freeze-week] must be scheduled the week-ends too (#952) 2020-05-04 12:25:50 +02:00
run_survey_sec_bugs.sh Add survey sec bugs (#872) 2020-01-22 15:32:36 +01:00
runauto_nag_common.sh Keep running scripts when one fails (#895) 2020-02-18 09:41:45 +01:00
runauto_nag_daily.sh [code-freeze-week] must be scheduled the week-ends too (#952) 2020-05-04 12:25:50 +02:00
runauto_nag_hourly.sh Run the spambug script hourly instead of daily (#914) 2020-03-05 18:10:01 +01:00
tox.ini Migrate to python3 + cleanup (#602) 2019-05-21 14:54:15 +02:00
update_people.sh Generate phonebook data using IAM api (#820) 2019-09-09 12:02:28 +02:00

README.rst

.. image:: https://community-tc.services.mozilla.com/api/github/v1/repository/mozilla/relman-auto-nag/master/badge.svg
    :target: https://community-tc.services.mozilla.com/api/github/v1/repository/mozilla/relman-auto-nag/master/latest
.. image:: https://coveralls.io/repos/github/mozilla/relman-auto-nag/badge.svg
    :target: https://coveralls.io/github/mozilla/relman-auto-nag


This tool is used by Mozilla release management to send emails to the Firefox developers. It will query the bugzilla.mozilla.org database and send emails to Mozilla developers and their managers (if Mozilla staff).

The tool will also notify release managers about potential issues in bugzilla and autofix some categories of issues.

The list of checkers is documented on the Mozilla wiki:
https://wiki.mozilla.org/Release_Management/autonag


This package currently uses Mozilla's `Bugzilla REST API <https://wiki.mozilla.org/Bugzilla:REST_API>`_, and optionally the Mozilla IAM `phonebook <https://github.com/mozilla-iam/cis/blob/master/docs/PersonAPI.md>`_ (to access bug assignees' managers & Mozilla email addresses).


Installation
------------

#. Check out the code::

    git clone git://github.com/mozilla/relman-auto-nag.git

#. (optional) Create your virtualenv using virtualenvwrapper::

    virtualenv -p python3 venv
    source venv/bin/activate

#. Install pip::

    easy_install pip

#. Install the dependencies for Python 3 too::

    pip3 install -r requirements.txt


To run it into production, you will need the full list of employees + managers.

Automated Nagging Script
------------------------

Before running:

1. The LDAP + SMTP infos are used to send emails
2. Need to generate an API key from bugzilla admin ( https://bugzilla.mozilla.org/userprefs.cgi?tab=apikey )
3. Should generate an API key from Phabricator ( https://phabricator.services.mozilla.com/settings/user )
4. The IAM secrets are used to generate a dump of phonebook, so they're mandatory but you still need to have such a dump
5. The private entry contains URLs for private calendar in ICS format:

.. code-block:: json

    # in scripts/configs/config.json
    {
      "ldap_username": "xxx@xxxx.xxx",
      "ldap_password": "xxxxxxxxxxxxxx",
      "smtp_server": "smtp.xxx.xxx",
      "smtp_port": 314,
      "smtp_ssl": true,
      "bz_api_key": "xxxxxxxxxxxxxx",
      "phab_api_key": "xxxxxxxxxxxxxx",
      "iam_client_secret": "xxxxxxxxxxxxxx",
      "iam_client_id": "xxxxxxxxxxxxxx",
      "private":
      {
        "Core::General": "https://..."
      }
    }

Do a dryrun::
    python -m auto_nag.scripts.stalled -d

There is a ton of scripts in auto_nag/scripts/ so you should be able to find some good examples.

Setting up 'Round Robin' triage rotations
-----------------------------------------

One use case for this tool is managing triage of multiple components across a team of multiple people.

To set up a new Round Robin rotation, a manager or team lead should create a Google Calendar with the rotation of triagers.

Then the administrators will need to create a configuration file:

.. code-block:: json

    # in scripts/configs/<name of rotation>_round_robin.json
    {
        "fallback": "<Name of manager or lead>",
        "components":
        {
            "Product::Component": "default",
            "Product::Component": "default",
            …
        },
        "default":
        {
            "calendar": "private://<Name of calendar>"
        }
    }

The person requesting the round robin schedule must provide the URL of the calendar's `.ics` file.

In the calendar, the summary of the events must be the full name (eventually prefixed with text between square brackets) of triage owner as it appears in Phonebook, e.g. `[Gfx Triage] Foo Bar` or just `Foo Bar`.

And then you just have to add an entry in `auto_nag/scripts/config/tools.json <https://github.com/mozilla/relman-auto-nag/blob/master/auto_nag/scripts/configs/tools.json#L2>`_ in the round-robin section.

Once everything is set-up you can make a PR similar too https://github.com/mozilla/relman-auto-nag/pull/858/files

Running on a server
-------------------

This needs to run on a private server because it will have login for smtp and bugzilla key so it can't currently be shared access.

Cronjob::

  00 14 * * 1-5 $HOME/run_autonags_daily.sh &> /tmp/autonag.log
  15 */1 * * * $HOME/runauto_nag_hourly.sh &> /tmp/autonag-hour.log