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

Fix a few issues with migrated bootstrap classes (left -> start, right -> end), revert a bunch of shitty colors from standard, fixup backgrounds. Tried to remove the background overrides what with having used variables but it does completely wrong for info, and I can't be arsed (also force primary alerts for the same reason, I don't understand what either bootstrap or standard does and how to override it properly but it's shit). It'll keep.
39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
{
|
|
'name': 'merge bot',
|
|
'version': '1.15',
|
|
'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_primary_variables': [
|
|
('prepend', 'runbot_merge/static/scss/primary_variables.scss'),
|
|
],
|
|
'web.assets_frontend': [
|
|
'runbot_merge/static/scss/runbot_merge.scss',
|
|
],
|
|
'web.assets_backend': [
|
|
'runbot_merge/static/scss/runbot_merge_backend.scss',
|
|
'runbot_merge/static/src/project_freeze/index.js',
|
|
],
|
|
},
|
|
'post_load': 'enable_sentry',
|
|
'pre_init_hook': '_check_citext',
|
|
'license': 'LGPL-3',
|
|
}
|