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

- code in the various menus added over time through the UI (queues, configuration, ...) - update / improve PR layout a tick - fix "outstanding forward ports" count on the dashboard - improve hover title / help on dashboard - add date of last modification (usually date of success / failure) - make casing more coherent (everything lowercase) - add explicit note that UTC date on staged at label is staged at datetime - rediscover yet again that the staging information is when hovering on the staging *except the staged at label* - improve `PullRequest.unstage` to always insert the PR at the start of the reason when cancelling the staging, for clarity / traceability Closes #560, closes #609
15 lines
330 B
Python
15 lines
330 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'forward port bot',
|
|
'version': '1.1',
|
|
'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',
|
|
}
|