mirror of
https://github.com/odoo/runbot.git
synced 2025-03-15 23:45:44 +07:00

Currently, if a PR forward-port PR gets detached the reason for it is not always obvious, and may have to be hunted in the logs or in "sibling" PRs. By writing a forward port reason (hopefully) ever time we detach a PR, and displaying that reason in the form and dashboard, the justification should be a lot more obvious. Fixes #679
15 lines
330 B
Python
15 lines
330 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'forward port bot',
|
|
'version': '1.2',
|
|
'summary': "A port which forward ports successful PRs.",
|
|
'depends': ['runbot_merge'],
|
|
'data': [
|
|
'data/security.xml',
|
|
'data/crons.xml',
|
|
'data/views.xml',
|
|
'data/queues.xml',
|
|
],
|
|
'license': 'LGPL-3',
|
|
}
|