@@ -20,14 +20,15 @@ _migrations:
2020
2121odoo_version :
2222 type : float
23- default : 15 .0
23+ default : 16 .0
2424 choices :
2525 - 10.0
2626 - 11.0
2727 - 12.0
2828 - 13.0
2929 - 14.0
3030 - 15.0
31+ - 16.0
3132 help : Which Odoo version are we deploying in this branch?
3233
3334org_slug :
@@ -69,7 +70,7 @@ repo_description:
6970
7071ci :
7172 type : str
72- default : Travis
73+ default : GitHub
7374 choices :
7475 - Travis
7576 - GitHub
@@ -84,6 +85,7 @@ travis_apt_sources:
8485 https://github.com/travis-ci/apt-source-safelist/blob/master/ubuntu.json.
8586
8687 Example: [heroku, mono]
88+ when : &ci_is_travis "{{ ci == 'Travis' }}"
8789
8890travis_apt_packages :
8991 type : yaml
@@ -92,15 +94,16 @@ travis_apt_packages:
9294 Do you need extra apt packages in Travis? Add them here as a YAML list.
9395
9496 Example: [docker, vim]
97+ when : *ci_is_travis
9598
9699dependency_installation_mode :
97- default : OCA
100+ default : PIP
98101 type : str
99102 choices :
100103 - OCA
101104 - PIP
102- help :
103- Choose how to install module dependencies. Right now, "PIP" mode is experimental.
105+ help : Choose how to install module dependencies.
106+ when : *ci_is_travis
104107
105108generate_requirements_txt :
106109 default : yes
@@ -127,3 +130,32 @@ include_wkhtmltopdf:
127130 help :
128131 Do you need to install wkhtmltopdf? Usually only needed if you're going to test PDF
129132 report generation.
133+
134+ github_enforce_dev_status_compatibility :
135+ type : bool
136+ default : yes
137+ help : GitHub action checks the minimum development status?
138+ when : &ci_is_github "{{ ci == 'GitHub' }}"
139+
140+ github_check_license :
141+ type : bool
142+ default : yes
143+ help : GitHub action checks the manifest license?
144+ when : *ci_is_github
145+
146+ github_enable_codecov :
147+ type : bool
148+ default : yes
149+ help : GitHub action runs codecov/codecov-action?
150+ when : *ci_is_github
151+
152+ github_enable_makepot :
153+ type : bool
154+ default : yes
155+ help : GitHub action updates .pot files?
156+ when : *ci_is_github
157+
158+ github_enable_stale_action :
159+ type : bool
160+ default : yes
161+ help : Create GitHub 'stale' action?
0 commit comments