mirror of
https://github.com/odoo/runbot.git
synced 2025-04-03 16:50:58 +07:00

Displays the entire batch set as a table, along both repository (linked PRs) and branch (forward ports). Should provide a much more complete overview. Adds a copy of the dashboard as a raster render, to link from the PR: as usual SVG is shit, content-based viewboxes are hell and having to duplicate the entire CSS because `<img/>`-linked CSS can't run is gross. And there's no payoff since the image is not interactible anyway. Performing manual ad-hoc table rendering via pillow is not significantly worse, it works fine and it's possible to do *really* good conditional request handling (hopefully) because I've basically got all the information I need right here. In fact it might make sense to upgrade the regular HTML page with similar conditional request handling, at least for the last-update bit if not the etag. Fixes #771,fixes #770
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
{
|
|
'name': 'merge bot',
|
|
'version': '1.12',
|
|
'depends': ['contacts', 'mail', 'website'],
|
|
'data': [
|
|
'security/security.xml',
|
|
'security/ir.model.access.csv',
|
|
|
|
'data/merge_cron.xml',
|
|
'models/crons/git_maintenance.xml',
|
|
'models/crons/cleanup_scratch_branches.xml',
|
|
'data/runbot_merge.pull_requests.feedback.template.csv',
|
|
'views/res_partner.xml',
|
|
'views/runbot_merge_project.xml',
|
|
'views/batch.xml',
|
|
'views/mergebot.xml',
|
|
'views/queues.xml',
|
|
'views/configuration.xml',
|
|
'views/templates.xml',
|
|
'models/project_freeze/views.xml',
|
|
'models/staging_cancel/views.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_frontend': [
|
|
'runbot_merge/static/scss/runbot_merge.scss',
|
|
],
|
|
'web.assets_backend': [
|
|
'runbot_merge/static/scss/runbot_merge_backend.scss',
|
|
'runbot_merge/static/project_freeze/index.js',
|
|
],
|
|
},
|
|
'post_load': 'enable_sentry',
|
|
'pre_init_hook': '_check_citext',
|
|
'license': 'LGPL-3',
|
|
}
|