mirror of
https://github.com/odoo/runbot.git
synced 2025-03-15 15:35:46 +07:00

- only remind weekly initially (not daily) - root reminders on the forward port's creation, not the source's merge date - cap reminder interval at 4 weeks (instead of doubling every time) - track reminders on forward ports, don't share between siblings - remove `forwardport_updated_before` from the testing system, it's now possible to just update `reminder_next` to a past date and see if it gets triggered (it should to nothing on sources, or on forward port in a state which does not warrant concern) Fixes #801
15 lines
330 B
Python
15 lines
330 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'forward port bot',
|
|
'version': '1.5',
|
|
'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',
|
|
}
|