A script for detecting inactive user in the packager group
Find a file
Mattia Verga e2eff85e89 Fix mailing list retrieval
Signed-off-by: Mattia Verga <mattia.verga@tiscali.it>
2026-05-09 18:00:50 +02:00
.gitignore Update list of dependencies required 2023-07-31 10:58:46 -05:00
find_inactive_packagers.py Fix mailing list retrieval 2026-05-09 18:00:50 +02:00
LICENSE Initial push 2022-02-13 14:00:00 +01:00
Pipfile Add Koji builds check 2025-03-07 18:03:46 +01:00
README.md Add Koji builds check 2025-03-07 18:03:46 +01:00
SOP.md Add SOP file 2022-10-23 11:18:53 +02:00

find-inactive-packagers

The script will search for any activity in the last year in:

  • koji builds
  • src.fedoraproject.org
  • pagure.io
  • bodhi (through datagrepper)
  • Fedora mailing lists
  • Fedora Discussion
  • Red Hat bugzilla

The step-one subcommand will output the 'inactive_packagers.csv' file with a list of all users in the packager group and their email which are found to be inactive. This can be used to contact the inactive users, asking them to show some activity in pagure, datagrepper or mailing lists. Optionally, it can open tickets against inactive packagers in a Pagure repository.

The check-impact subcommand will iterate on the list of tickets opened and provide information about how many packages will possibly be orphaned based on the packagers detected as inactive.

The step-two subcommand can either check a list of inactive users from the csv file generated in step-one, or check a list of users based on open Pagure tickets. In this last case, the tickets can be closed appropriately. Another csv file is generated as output to list users which are still inactive.

Use the '--privacy' flag to not print emails in the log.

To run the script you'll need:

  • click, fasjson_client, koji, and python-bugzilla to be installed
  • an active kerberos ticket to login to fasjson.fedoraproject.org
  • a bugzilla API key for bugzilla.redhat.com in your ~/.bugzillarc config file

Optionally, providing a Pagure repository URL and a token the script can automatically open and manage an issue ticket for each detected inactive packager.

Example usage

$ pipenv shell
...
$ pipenv install
...
$ sudo dnf install fedora-packager-kerberos
...
$ fkinit -u <USER>
...
$ cat > ~/.bugzillarc <<EOL
$ > [bugzilla.redhat.com]
$ > api_key=<YOUR_BZ_API_KEY>
$ > EOL
$ python find-inactive-packagers.py [--privacy] step-one
...
$ python find-inactive-packagers.py [--privacy] step-two prev-run.csv

License

find-inactive-packagers is licensed under MIT.